From 6eda47b76f244dec2a1ecc2efec86492330b4e6e Mon Sep 17 00:00:00 2001 From: wassname Date: Mon, 26 Oct 2020 15:33:32 +0800 Subject: [PATCH] misc --- .../02.0-mike-RNN_Timeseries_Seq2Seq.ipynb | 5618 ----------- notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.py | 725 -- .../03.0-mike-RNN_Timeseries_Seq2Seq.ipynb | 8715 ----------------- notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.py | 805 -- seq2seq_time/data/data.py | 8 +- seq2seq_time/data/dataset.py | 2 +- seq2seq_time/data/tidal.py | 1 + 7 files changed, 8 insertions(+), 15866 deletions(-) delete mode 100644 notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.ipynb delete mode 100644 notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.py delete mode 100644 notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.ipynb delete mode 100644 notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.py diff --git a/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.ipynb b/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.ipynb deleted file mode 100644 index b03d877..0000000 --- a/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.ipynb +++ /dev/null @@ -1,5618 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-10T01:25:12.788851Z", - "start_time": "2020-10-10T01:25:12.783398Z" - } - }, - "source": [ - "# Sequence to Sequence Models for Timeseries Regression\n", - "\n", - "\n", - "In this notebook we are going to tackle a harder problem: \n", - "- predicting the future on a timeseries\n", - "- using an LSTM\n", - "- with rough uncertainty (uncalibrated)\n", - "- outputing sequence of predictions\n", - "\n", - "\n", - "\n", - "\n", - "https://medium.com/@boitemailjeanmid/smart-meters-in-london-part1-description-and-first-insights-jean-michel-d-db97af2de71b\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:29.474642Z", - "start_time": "2020-10-19T13:24:29.025860Z" - } - }, - "outputs": [], - "source": [ - "# OPTIONAL: Load the \"autoreload\" extension so that code can change. But blacklist large modules\n", - "%load_ext autoreload\n", - "%autoreload 2\n", - "%aimport -pandas\n", - "%aimport -torch\n", - "%aimport -numpy\n", - "%aimport -matplotlib\n", - "%aimport -dask\n", - "%aimport -tqdm\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:30.583721Z", - "start_time": "2020-10-19T13:24:29.478450Z" - } - }, - "outputs": [], - "source": [ - "# Imports\n", - "import torch\n", - "from torch import nn, optim\n", - "from torch.nn import functional as F\n", - "from torch.autograd import Variable\n", - "import torch\n", - "import torch.utils.data\n", - "\n", - "import pandas as pd\n", - "import numpy as np\n", - "import matplotlib.pyplot as plt\n", - "plt.rcParams['figure.figsize'] = (12.0, 3.0)\n", - "plt.style.use('ggplot')\n", - "\n", - "from pathlib import Path\n", - "from tqdm.auto import tqdm\n", - "\n", - "import pytorch_lightning as pl" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:30.616617Z", - "start_time": "2020-10-19T13:24:30.588643Z" - } - }, - "outputs": [], - "source": [ - "import warnings\n", - "warnings.simplefilter('once')" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:31.183770Z", - "start_time": "2020-10-19T13:24:30.622322Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "from seq2seq_time.data.dataset import Seq2SeqDataSet, Seq2SeqDataSets\n", - "from seq2seq_time.predict import predict, predict_multi" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:31.218369Z", - "start_time": "2020-10-19T13:24:31.187185Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "import logging, sys\n", - "# logging.basicConfig(stream=sys.stdout, level=logging.INFO)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-10T01:28:32.492160Z", - "start_time": "2020-10-10T01:28:32.488140Z" - } - }, - "source": [ - "## Parameters" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:31.286536Z", - "start_time": "2020-10-19T13:24:31.222958Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "using cuda\n" - ] - } - ], - "source": [ - "device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n", - "print(f'using {device}')\n", - "\n", - "columns_target=['energy(kWh/hh)']\n", - "window_past = 48*2\n", - "window_future = 48*2\n", - "batch_size = 256\n", - "num_workers = 5\n", - "freq = '30T'\n", - "max_rows = 5e5" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load data" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:31.338216Z", - "start_time": "2020-10-19T13:24:31.290344Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [], - "source": [ - "\n", - "def get_smartmeter_df(indir=Path('../data/raw/smart-meters-in-london'), max_files=8):\n", - " \"\"\"\n", - " Data loading and cleanding is always messy, so understand this code is optional.\n", - " \"\"\"\n", - " \n", - " # Load csv files\n", - " csv_files = sorted((indir/'halfhourly_dataset').glob('*.csv'))[:max_files]\n", - " \n", - " dfs = []\n", - " for f in csv_files:\n", - " df = (pd.read_csv(f, parse_dates=[1], na_values=['Null'])\n", - " .groupby('tstp')\n", - " .sum()\n", - " .sort_index()\n", - " )\n", - " df['block'] = f.stem\n", - "\n", - " # Drop nan and 0's\n", - " df = df[df['energy(kWh/hh)']!=0]\n", - " df = df.dropna()\n", - " \n", - " # Add time features \n", - " time = df.index.to_series()\n", - " df[\"month\"] = time.dt.month\n", - " df['day'] = time.dt.day\n", - " df['week'] = time.dt.week\n", - " df['hour'] = time.dt.hour\n", - " df['minute'] = time.dt.minute\n", - " df['dayofweek'] = time.dt.dayofweek\n", - "\n", - " # Load weather data\n", - " df_weather = pd.read_csv(indir/'weather_hourly_darksky.csv', parse_dates=[3])\n", - " use_cols = ['visibility', 'windBearing', 'temperature', 'time', 'dewPoint',\n", - " 'pressure', 'apparentTemperature', 'windSpeed', \n", - " 'humidity']\n", - " df_weather = df_weather[use_cols].set_index('time')\n", - " \n", - " # Resample to match energy data \n", - " # Use first, since we have bearing, and you can't take mean\n", - " df_weather = df_weather.resample(freq).first().ffill() \n", - "\n", - " # Join weather and energy data\n", - " df = pd.merge(df, df_weather, how='inner', left_index=True, right_index=True, sort=True)\n", - "\n", - " # Holidays\n", - " df_hols = pd.read_csv(indir/'uk_bank_holidays.csv', parse_dates=[0])\n", - " holidays = set(df_hols['Bank holidays'].dt.round('D')) \n", - " def is_holiday(dt):\n", - " return dt in holidays\n", - " days = df.index.floor('D')\n", - " holiday_mapping = days.unique().to_series().apply(is_holiday).astype(int).to_dict()\n", - " df['holiday'] = days.to_series().map(holiday_mapping).values\n", - "\n", - " # sort\n", - " df.index.name = 'Date'\n", - " df = df.loc['2012-09':] # Weird value before this\n", - " \n", - " dfs.append(df)\n", - " \n", - " return pd.concat(dfs)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T06:24:38.318999Z", - "start_time": "2020-10-19T06:24:35.452722Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Our dataset is the london smartmeter data. But at half hour intervals" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:49.503564Z", - "start_time": "2020-10-19T13:24:31.344006Z" - }, - "lines_to_next_cell": 0, - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "block_107 26161\n", - "block_100 26161\n", - "block_10 26161\n", - "block_1 26161\n", - "block_105 26161\n", - "block_0 26161\n", - "block_102 26161\n", - "block_103 26161\n", - "block_108 26161\n", - "block_106 26161\n", - "block_101 26161\n", - "block_104 26161\n", - "Name: block, dtype: int64\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
energy(kWh/hh)blockmonthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholiday
Date
2012-09-01 00:00:005.013block_0913500513.36302.014.089.741028.2714.081.890.750
2012-09-01 00:30:005.157block_09135030513.36302.014.089.741028.2714.081.890.750
2012-09-01 01:00:006.360block_0913510513.50298.013.939.811027.9613.931.590.760
2012-09-01 01:30:005.511block_09135130513.50298.013.939.811027.9613.931.590.760
2012-09-01 02:00:004.922block_0913520513.21274.013.529.941028.0413.520.820.790
......................................................
2014-02-27 22:00:009.819block_1082279220314.00216.04.101.641005.671.413.020.840
2014-02-27 22:30:008.792block_10822792230314.00216.04.101.641005.671.413.020.840
2014-02-27 23:00:008.087block_1082279230314.03200.03.931.611004.621.422.750.850
2014-02-27 23:30:007.114block_10822792330314.03200.03.931.611004.621.422.750.850
2014-02-28 00:00:007.287block_108228900412.63190.03.811.531003.571.472.530.850
\n", - "

313932 rows × 17 columns

\n", - "
" - ], - "text/plain": [ - " energy(kWh/hh) block month day week hour \\\n", - "Date \n", - "2012-09-01 00:00:00 5.013 block_0 9 1 35 0 \n", - "2012-09-01 00:30:00 5.157 block_0 9 1 35 0 \n", - "2012-09-01 01:00:00 6.360 block_0 9 1 35 1 \n", - "2012-09-01 01:30:00 5.511 block_0 9 1 35 1 \n", - "2012-09-01 02:00:00 4.922 block_0 9 1 35 2 \n", - "... ... ... ... ... ... ... \n", - "2014-02-27 22:00:00 9.819 block_108 2 27 9 22 \n", - "2014-02-27 22:30:00 8.792 block_108 2 27 9 22 \n", - "2014-02-27 23:00:00 8.087 block_108 2 27 9 23 \n", - "2014-02-27 23:30:00 7.114 block_108 2 27 9 23 \n", - "2014-02-28 00:00:00 7.287 block_108 2 28 9 0 \n", - "\n", - " minute dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2012-09-01 00:00:00 0 5 13.36 302.0 14.08 \n", - "2012-09-01 00:30:00 30 5 13.36 302.0 14.08 \n", - "2012-09-01 01:00:00 0 5 13.50 298.0 13.93 \n", - "2012-09-01 01:30:00 30 5 13.50 298.0 13.93 \n", - "2012-09-01 02:00:00 0 5 13.21 274.0 13.52 \n", - "... ... ... ... ... ... \n", - "2014-02-27 22:00:00 0 3 14.00 216.0 4.10 \n", - "2014-02-27 22:30:00 30 3 14.00 216.0 4.10 \n", - "2014-02-27 23:00:00 0 3 14.03 200.0 3.93 \n", - "2014-02-27 23:30:00 30 3 14.03 200.0 3.93 \n", - "2014-02-28 00:00:00 0 4 12.63 190.0 3.81 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2012-09-01 00:00:00 9.74 1028.27 14.08 1.89 \n", - "2012-09-01 00:30:00 9.74 1028.27 14.08 1.89 \n", - "2012-09-01 01:00:00 9.81 1027.96 13.93 1.59 \n", - "2012-09-01 01:30:00 9.81 1027.96 13.93 1.59 \n", - "2012-09-01 02:00:00 9.94 1028.04 13.52 0.82 \n", - "... ... ... ... ... \n", - "2014-02-27 22:00:00 1.64 1005.67 1.41 3.02 \n", - "2014-02-27 22:30:00 1.64 1005.67 1.41 3.02 \n", - "2014-02-27 23:00:00 1.61 1004.62 1.42 2.75 \n", - "2014-02-27 23:30:00 1.61 1004.62 1.42 2.75 \n", - "2014-02-28 00:00:00 1.53 1003.57 1.47 2.53 \n", - "\n", - " humidity holiday \n", - "Date \n", - "2012-09-01 00:00:00 0.75 0 \n", - "2012-09-01 00:30:00 0.75 0 \n", - "2012-09-01 01:00:00 0.76 0 \n", - "2012-09-01 01:30:00 0.76 0 \n", - "2012-09-01 02:00:00 0.79 0 \n", - "... ... ... \n", - "2014-02-27 22:00:00 0.84 0 \n", - "2014-02-27 22:30:00 0.84 0 \n", - "2014-02-27 23:00:00 0.85 0 \n", - "2014-02-27 23:30:00 0.85 0 \n", - "2014-02-28 00:00:00 0.85 0 \n", - "\n", - "[313932 rows x 17 columns]" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = get_smartmeter_df(max_files=12)\n", - "\n", - "# # Just get the first one for now\n", - "# dfs = list(dfs)\n", - "\n", - "# # df = df.resample(freq).first().dropna() # Where empty we will backfill, this will respect causality, and mostly maintain the mean\n", - "\n", - "df = df.tail(int(max_rows)).copy() # Just use last X rows\n", - "# df = pd.concat(dfs[:6], 0)\n", - "# # df = dfs[0]\n", - "print(df.block.value_counts())\n", - "df" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:20:41.850970Z", - "start_time": "2020-10-19T07:20:41.747955Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Plot/explore" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:21:39.815254Z", - "start_time": "2020-10-19T07:21:39.703940Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T01:28:33.445231Z", - "start_time": "2020-10-19T01:28:32.776866Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:52.741132Z", - "start_time": "2020-10-19T13:24:49.518745Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/holoviews/operation/datashader.py:5: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\n", - " from collections import Callable\n" - ] - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " if (window.requirejs) {\n", - " require([], function() {\n", - " run_callbacks();\n", - " })\n", - " } else {\n", - " var skip = [];\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " if (skip.indexOf(url) >= 0) { on_load(); continue; }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [];\n", - " var css_urls = [];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " inject_raw_css(\".panel-widget-box {\\n\\tmin-height: 20px;\\n\\tbackground-color: #f5f5f5;\\n\\tborder: 1px solid #e3e3e3 !important;\\n\\tborder-radius: 4px;\\n\\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\toverflow-x: hidden;\\n\\toverflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n\\tappearance: none;\\n\\t-moz-appearance: none;\\n\\t-webkit-appearance: none;\\n\\n\\tborder: none;\\n\\theight: 20px;\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n\\tcolor: royalblue;\\n\\tposition: relative;\\n\\tmargin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n\\tposition: relative;\\n\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n\\tborder-radius:3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n\\tcontent:\\\" \\\";\\n\\tposition:absolute;\\n\\theight: 20px;\\n\\ttop:0;\\n\\tleft:0;\\n\\tright:0;\\n\\tbottom:0;\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " /* BEGIN bokeh.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " const bokeh = factory();\n", - " bokeh.__bokeh__ = true;\n", - " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", - " root.Bokeh = bokeh;\n", - " }\n", - " const Bokeh = root.Bokeh;\n", - " Bokeh[bokeh.version] = bokeh;\n", - " })(this, function() {\n", - " var define;\n", - " var parent_require = typeof require === \"function\" && require\n", - " return (function(modules, entry, aliases, externals) {\n", - " if (aliases === undefined) aliases = {};\n", - " if (externals === undefined) externals = {};\n", - "\n", - " var cache = {};\n", - "\n", - " var normalize = function(name) {\n", - " if (typeof name === \"number\")\n", - " return name;\n", - "\n", - " if (name === \"bokehjs\")\n", - " return entry;\n", - "\n", - " var prefix = \"@bokehjs/\"\n", - " if (name.slice(0, prefix.length) === prefix)\n", - " name = name.slice(prefix.length)\n", - "\n", - " var alias = aliases[name]\n", - " if (alias != null)\n", - " return alias;\n", - "\n", - " var trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", - " var index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", - " if (index != null)\n", - " return index;\n", - "\n", - " return name;\n", - " }\n", - "\n", - " var require = function(name) {\n", - " var mod = cache[name];\n", - " if (!mod) {\n", - " var id = normalize(name);\n", - "\n", - " mod = cache[id];\n", - " if (!mod) {\n", - " if (!modules[id]) {\n", - " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", - " try {\n", - " mod = {exports: externals[id] ? parent_require(id) : {}};\n", - " cache[id] = cache[name] = mod;\n", - " return mod.exports;\n", - " } catch (e) {}\n", - " }\n", - "\n", - " var err = new Error(\"Cannot find module '\" + name + \"'\");\n", - " err.code = 'MODULE_NOT_FOUND';\n", - " throw err;\n", - " }\n", - "\n", - " mod = {exports: {}};\n", - " cache[id] = cache[name] = mod;\n", - " modules[id].call(mod.exports, require, mod, mod.exports);\n", - " } else\n", - " cache[name] = mod;\n", - " }\n", - "\n", - " return mod.exports;\n", - " }\n", - " require.resolve = function(name) {\n", - " return \"\"\n", - " }\n", - "\n", - " var main = require(entry);\n", - " main.require = require;\n", - "\n", - " if (typeof Proxy !== \"undefined\") {\n", - " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", - " main.loader = new Proxy({}, {\n", - " get: function(_obj, module) {\n", - " return require(module);\n", - " }\n", - " });\n", - " }\n", - "\n", - " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", - " if (plugin_aliases === undefined) plugin_aliases = {};\n", - " if (plugin_externals === undefined) plugin_externals = {};\n", - "\n", - " for (var name in plugin_modules) {\n", - " modules[name] = plugin_modules[name];\n", - " }\n", - "\n", - " for (var name in plugin_aliases) {\n", - " aliases[name] = plugin_aliases[name];\n", - " }\n", - "\n", - " for (var name in plugin_externals) {\n", - " externals[name] = plugin_externals[name];\n", - " }\n", - "\n", - " var plugin = require(plugin_entry);\n", - "\n", - " for (var name in plugin) {\n", - " main[name] = plugin[name];\n", - " }\n", - "\n", - " return plugin;\n", - " }\n", - "\n", - " return main;\n", - " })\n", - " ([\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});e(1).__exportStar(e(2),_)},\n", - " function _(t,e,n){\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation.\n", - " \n", - " Permission to use, copy, modify, and/or distribute this software for any\n", - " purpose with or without fee is hereby granted.\n", - " \n", - " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", - " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", - " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", - " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", - " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", - " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", - " PERFORMANCE OF THIS SOFTWARE.\n", - " ***************************************************************************** */\n", - " Object.defineProperty(n,\"__esModule\",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function a(t,e){var n=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=0;u--)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r(\"next\"),r(\"throw\",(function(t){throw t})),r(\"return\"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:\"return\"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r(\"next\"),r(\"throw\"),r(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError(\"attempted to get private field on non-instance\");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError(\"attempted to set private field on non-instance\");return e.set(t,n),n}},\n", - " function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,\"__esModule\",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.version=\"2.2.2\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const r=a._get_ws_url(t,c);s.logger.debug(\"embed: computed ws url: \"+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(\"Somehow we didn't detach \"+e);if(0!=this._all_models.size)throw new Error(\"this._all_models still had stuff in it: \"+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug(\"Adding root: \"+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\\./,\"$1\")==t?i.logger.debug(o):(i.logger.warn(\"JS/Python version mismatch\"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn(\"Cannot create a patch using events from a different document, event had \",o.document,\" we are \",this),new Error(\"Cannot create a patch using events from a different document\");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(\"Unknown patch event \"+JSON.stringify(e))}}}s.Document=j,j.__name__=\"Document\"},\n", - " function _(e,r,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},\n", - " function _(n,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " const e=n(9),i=Object.prototype.toString;function o(n){return\"[object Number]\"===i.call(n)}function c(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||\"[object Boolean]\"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return\"[object String]\"===i.call(n)},r.isFunction=function(n){return\"[object Function]\"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;on.length)),r=Array(e);for(let n=0;nn[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,\"__esModule\",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return nr?r:n}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__=\"AssertionError\",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:\"Assertion failed\")},n.unreachable=function(){throw new Error(\"unreachable code\")}},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(8),o=n(10);function i(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,\"destroyed\"),this.change=new n.Signal0(this,\"change\"),this.transformchange=new n.Signal0(this,\"transformchange\"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r(\"__deferred__\"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+\" must be explicitly wrapped in a function\");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property '${this.prototype.type}.${e}'`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${e}'`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case\"line\":return a.LineVector;case\"fill\":return a.FillVector;case\"hatch\":return a.HatchVector;case\"text\":return a.TextVector;default:throw new Error(`Unknown property mixin kind '${t}'`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split(\"_\",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=\"\"]=o.split(\":\"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[...this.prototype._mixins,...i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${e}'`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(\":\")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e(\"(\")}${e(\"{\")}${r.join(e(\",\")+\" \")}${e(\"}\")}${e(\")\")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;sn.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.delay=\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " function(n,e){return setTimeout(n,e)};const u=\"function\"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&\"id\"==n[0]}return!1}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__=\"Property\";class h extends m{}n.PrimitiveProperty=h,h.__name__=\"PrimitiveProperty\";class v extends m{}n.Any=v,v.__name__=\"Any\";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__=\"Array\";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__=\"Boolean\";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__=\"Color\";class f extends m{}n.Instance=f,f.__name__=\"Instance\";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__=\"Number\";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__=\"Int\";class C extends A{}n.Angle=C,C.__name__=\"Angle\";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__=\"Percent\";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__=\"String\";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__=\"NullString\";class T extends L{}n.FontSize=T,T.__name__=\"FontSize\";class q extends L{_default_override(){return d.settings.dev?\"Bokeh\":void 0}}n.Font=q,q.__name__=\"Font\";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[...e]}}}n.EnumProperty=B,B.__name__=\"EnumProperty\",n.Enum=M;class w extends B{get enum_values(){return[...r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;ne*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__=\"AngleSpec\";class le extends G{get default_units(){return\"data\"}get valid_units(){return[...r.SpatialUnits]}}n.DistanceSpec=le,le.__name__=\"DistanceSpec\";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__=\"BooleanSpec\";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__=\"NumberSpec\";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level\",\"*\"),t.HTTPMethod=o.Enum(\"POST\",\"GET\"),t.HexTileOrientation=o.Enum(\"pointytop\",\"flattop\"),t.HoverMode=o.Enum(\"mouse\",\"hline\",\"vline\"),t.LatLon=o.Enum(\"lat\",\"lon\"),t.LegendClickPolicy=o.Enum(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum(\"butt\",\"round\",\"square\"),t.LineJoin=o.Enum(\"miter\",\"round\",\"bevel\"),t.LinePolicy=o.Enum(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.Logo=o.Enum(\"normal\",\"grey\"),t.MarkerType=o.Enum(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=o.Enum(\"show\",\"ignore\"),t.Orientation=o.Enum(\"vertical\",\"horizontal\"),t.OutputBackend=o.Enum(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=o.Enum(\"percent\",\"absolute\"),t.Place=o.Enum(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=o.Enum(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=o.Enum(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=o.Enum(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=o.Enum(\"canvas\",\"css\"),t.ResetPolicy=o.Enum(\"standard\",\"event_only\"),t.RoundingFunction=o.Enum(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=o.Enum(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=o.Enum(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=o.Enum(\"ascending\",\"descending\"),t.SpatialUnits=o.Enum(\"screen\",\"data\"),t.StartEnd=o.Enum(\"start\",\"end\"),t.StepMode=o.Enum(\"after\",\"before\",\"center\"),t.TapBehavior=o.Enum(\"select\",\"inspect\"),t.TextAlign=o.Enum(\"left\",\"right\",\"center\"),t.TextBaseline=o.Enum(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=o.Enum(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=o.Enum(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=o.Enum(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=o.Enum(\"replace\",\"append\"),t.VerticalAlign=o.Enum(\"top\",\"middle\",\"bottom\")},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__=\"Kind\",function(e){class n extends i{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends i{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__=\"Boolean\",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__=\"Ref\",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__=\"Number\",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__=\"Int\",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__=\"Or\",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e))}}c.__name__=\"Array\",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__=\"Null\",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__=\"Nullable\",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__=\"String\",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__=\"Enum\",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__=\"Struct\",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__=\"Dict\",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__=\"Color\",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__=\"Percent\",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(...e)=>new t.Kinds.Or(e),t.Tuple=(...e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(...e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?\"0\"+r:r}function o(e){if(0==(e+=\"\").indexOf(\"#\"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf(\"rgb\")){const r=e.replace(/^rgba?\\(|\\s+|\\)$/g,\"\").split(\",\");let t=r.slice(0,3).map(a).join(\"\");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),\"#\"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case\"rgba\":r={start:\"rgba(\",len:4,alpha:!0};break;case\"rgb(\":r={start:\"rgb(\",len:3,alpha:!1};break;default:return!1}if(new RegExp(\".*?(\\\\.).*(,)\").test(e))return!1;const t=e.replace(r.start,\"\").replace(\")\",\"\").split(\",\").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||\"#\"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n", - " function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;st(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error(\"dimensions don't match\")}to_sparse(){return[...this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__=\"Matrix\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__=\"Settings\",s.settings=new n},\n", - " function _(e,l,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,\"black\"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,\"gray\"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,\"black\"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,\"#444444\"],text_alpha:[a.Number,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSize,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,\"black\"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,\"bevel\"],line_cap:[a.LineCapScalar,\"butt\"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,\"gray\"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,\"black\"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,\"#444444\"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeScalar,\"16px\"],text_font_style:[a.FontStyleScalar,\"normal\"],text_align:[a.TextAlignScalar,\"left\"],text_baseline:[a.TextBaselineScalar,\"bottom\"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,\"black\"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,\"gray\"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,\"black\"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,\"#444444\"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeSpec,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]=\"0123456789ABCDEF\".substr(Math.floor(16*Math.random()),1);return t[12]=\"4\",t[16]=\"0123456789ABCDEF\".substr(3&t[16].charCodeAt(0)|8,1),t.join(\"\")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?\"j\"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>\"'`])/g,t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}})},r.use_strict=function(t){return\"'use strict';\\n\"+t}},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol(\"__ndarray__\");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__=\"Uint8NDArray\";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__=\"Int8NDArray\";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__=\"Uint16NDArray\";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__=\"Int16NDArray\";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__=\"Uint32NDArray\";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__=\"Int32NDArray\";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__=\"Float32NDArray\";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float64\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__=\"Float64NDArray\",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?\"float32\":(()=>{switch(!0){case t instanceof Uint8Array:return\"uint8\";case t instanceof Int8Array:return\"int8\";case t instanceof Uint16Array:return\"uint16\";case t instanceof Int16Array:return\"int16\";case t instanceof Uint32Array:return\"uint32\";case t instanceof Int32Array:return\"int32\";case t instanceof Float32Array:return\"float32\";case t instanceof Float64Array:return\"float64\";default:a.unreachable()}})());const{shape:n}=s;switch(e){case\"uint8\":return new h(t,n);case\"int8\":return new _(t,n);case\"uint16\":return new u(t,n);case\"int16\":return new l(t,n);case\"uint32\":return new y(t,n);case\"int32\":return new c(t,n);case\"float32\":return new p(t,n);case\"float64\":return new o(t,n)}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(\"\"))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e{switch(a){case\"uint8\":return new _.Uint8NDArray(o,n);case\"int8\":return new _.Int8NDArray(o,n);case\"uint16\":return new _.Uint16NDArray(o,n);case\"int16\":return new _.Int16NDArray(o,n);case\"uint32\":return new _.Uint32NDArray(o,n);case\"int32\":return new _.Int32NDArray(o,n);case\"float32\":return new _.Float32NDArray(o,n);case\"float64\":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=\"\"+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},\n", - " function _(e,n,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.is_ie=(()=>{const e=\"undefined\"!=typeof navigator?navigator.userAgent:\"\";return e.indexOf(\"MSIE\")>=0||e.indexOf(\"Trident\")>0||e.indexOf(\"Edge\")>0})(),i.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},\n", - " function _(t,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol(\"pretty\");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):\"\"+t}token(t){return t}boolean(t){return\"\"+t}number(t){return null!=this.precision?t.toFixed(this.precision):\"\"+t}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r(\"[\")}${n.join(r(\",\")+\" \")}${r(\"]\")}`}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:\"Object\",i=this.array(t);return`${e}${n(\"(\")}${i}${n(\")\")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(`${e}${r(\":\")} ${this.to_string(o)}`);return`${r(\"{\")}${n.join(r(\",\")+\" \")}${r(\"}\")}`}}n.Printer=o,o.__name__=\"Printer\",n.to_string=function(t,r){return new o(r).to_string(t)}},\n", - " function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},\n", - " function _(a,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error(\"not implemented\")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__=\"AnnotationView\";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:\"annotation\"})}}n.Annotation=a,a.__name__=\"Annotation\",a.init_Annotation()},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default(\"GOOGLE\"),u=new l.default(\"WGS84\"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if(\"object\"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(\",\"):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var l=[\"3857\",\"900913\",\"3785\",\"102113\"];r.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,\"authority\");if(e){var r=a.default(e,\"epsg\");return r&&l.indexOf(r)>-1}}(e))return n.default[\"EPSG:3857\"];var r=function(t){var e=a.default(t,\"extension\");if(e)return a.default(e,\"proj4\")}(e);return r?i.default(r):e}return function(t){return\"+\"===t[0]}(t)?i.default(t):void 0}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];\"string\"==typeof r?\"+\"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if(\"string\"==typeof t){if(t in l)return l[t]}else\"EPSG\"in t?l[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?l[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?l[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},\n", - " function _(e,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.default=function(e){e(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),e(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),e(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),e.WGS84=e[\"EPSG:4326\"],e[\"EPSG:3785\"]=e[\"EPSG:3857\"],e.GOOGLE=e[\"EPSG:3857\"],e[\"EPSG:900913\"]=e[\"EPSG:3857\"],e[\"EPSG:102113\"]=e[\"EPSG:3857\"]}},\n", - " function _(t,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){\"@null\"===t?f.datumCode=\"none\":f.nadgrids=t},axis:function(t){3===t.length&&-1!==\"ewnsud\".indexOf(t.substr(0,1))&&-1!==\"ewnsud\".indexOf(t.substr(1,1))&&-1!==\"ewnsud\".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?\"function\"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return\"string\"==typeof f.datumCode&&\"WGS84\"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},\n", - " function _(P,_,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},\n", - " function _(e,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},\n", - " function _(e,t,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(l),l}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\\]]/,n=/[\\d\\.E\\-\\+]/;function a(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},a.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},a.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:u,forward:o,inverse:f,names:s.names}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},\n", - " function _(e,t,u){Object.defineProperty(u,\"__esModule\",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){return e<0?-1:1}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},\n", - " function _(t,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},\n", - " function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,\"__esModule\",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=[\"longlat\",\"identity\"],i.default={init:t,forward:r,inverse:r,names:i.names}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default(\"WGS84\"),r),e=n),\"enu\"!==e.axis&&(r=_.default(e,!1,r)),\"longlat\"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),\"longlat\"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),\"enu\"!==a.axis?_.default(a,!0,r):r}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},\n", - " function _(a,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},\n", - " function _(e,a,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!==\"ew\".indexOf(e.axis[r])?\"x\":\"y\"):1===r?(s=d,n=-1!==\"ns\".indexOf(e.axis[r])?\"y\":\"x\"):(s=u,n=\"z\"),e.axis[r]){case\"e\":case\"w\":case\"n\":case\"s\":f[n]=s;break;case\"u\":void 0!==i[n]&&(f.z=s);break;case\"d\":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},\n", - " function _(e,i,n){function t(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return\"overlay\"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__=\"RendererView\";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,\"default\"],y_range_name:[_.String,\"default\"]})}}t.Renderer=d,d.__name__=\"Renderer\",d.init_Renderer()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error(\"model of a view wasn't configured\");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error(\"parent of a view wasn't configured\")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+\" is not a root layout\")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__=\"View\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(8),o=t(13),s=t=>(e={},...n)=>{const s=document.createElement(t);s.classList.add(\"bk\");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if(\"class\"===t&&(i.isString(n)&&(n=n.split(/\\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if(\"style\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if(\"data\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error(\"expected a DOM element, string, false or null, got \"+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return s(t)(e,...n)},n.div=s(\"div\"),n.span=s(\"span\"),n.canvas=s(\"canvas\"),n.link=s(\"link\"),n.style=s(\"style\"),n.a=s(\"a\"),n.p=s(\"p\"),n.i=s(\"i\"),n.pre=s(\"pre\"),n.button=s(\"button\"),n.label=s(\"label\"),n.input=s(\"input\"),n.select=s(\"select\"),n.option=s(\"option\"),n.optgroup=s(\"optgroup\"),n.textarea=s(\"textarea\"),n.nbsp=function(){return document.createTextNode(\" \")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+\"px\",i.top=e.y+\"px\",i.width=e.width+\"px\",i.height=e.height+\"px\",null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||\" \"==this.hatch_pattern.spec.value||\"blank\"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select(\"pattern\",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select(\"pattern\",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__=\"Hatch\",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select(\"text_font_style\",e),super.cache_select(\"text_font_size\",e),super.cache_select(\"text_font\",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return\"font\"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"text_color\",t),s=this.cache_select(\"text_alpha\",t),l=this.cache_select(\"font\",t),c=this.cache_select(\"text_align\",t),i=this.cache_select(\"text_baseline\",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__=\"Text\",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=\"\"]=t.split(\":\");let l;switch(a){case\"line\":l=f;break;case\"fill\":l=d;break;case\"hatch\":l=k;break;case\"text\":l=x;break;default:throw new Error(\"unknown visual: \"+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__=\"Visuals\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error(\"cannot create a random attribute name for an undefined object\");const e=\"ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz\";let i=\"\";do{i=\"\";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return e[t]||e.start}function l(t){const e={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(\",\");e=e||10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(\"path\"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement(\"linearGradient\",{id:a(this.__ids),x1:n+\"px\",x2:o+\"px\",y1:r+\"px\",y2:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error(\"The provided double value is non-finite\");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement(\"radialGradient\",{id:a(this.__ids),cx:h+\"px\",cy:c+\"px\",r:r+\"px\",fx:o+\"px\",fy:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font),e={style:t[1]||\"normal\",size:t[4]||\"10px\",family:t[6]||\"sans-serif\",weight:t[3]||\"normal\",decoration:t[2]||\"normal\"};return\"underline\"===this.__fontUnderline&&(e.decoration=\"underline\"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement(\"a\");return i.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement(\"text\",{\"font-family\":n.family,\"font-size\":n.size,\"font-style\":n.style,\"font-weight\":n.weight,\"text-decoration\":n.decoration,x:e,y:i,\"text-anchor\":o(this.textAlign),\"dominant-baseline\":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement(\"clipPath\"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(\"Inavlid number of arguments passed to drawImage: \"+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_=\"translate(\"+i+\", \"+s+\")\",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement(\"g\"),this._apply_transform(i,u),c.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=n,e.height=r;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute(\"transform\",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\");const i=this.__document.createElement(\"canvas\");i.width=n,i.height=r;const s=i.getContext(\"2d\");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute(\"transform\",_),e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=a(this.__ids);if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",\"\"+this._to_number(t.width)),i.setAttribute(\"height\",\"\"+this._to_number(t.height)),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__=\"SVGRenderingContext2D\"},\n", - " function _(t,s,r){Object.defineProperty(r,\"__esModule\",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o{const e=document.createElement(\"canvas\"),t=e.getContext(\"webgl\",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace(\"WebGL is not supported\")})(),v={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case\"webgl\":case\"canvas\":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext(\"2d\");if(null==e)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),\"image/png\")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:\"image/svg+xml\"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__=\"CanvasLayer\";class g extends n.DOMView{constructor(){super(...arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;\"webgl\"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:\"bk-canvas-events\",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,...i),l.logger.debug(\"CanvasView initialized\")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__=\"CanvasView\";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,\"canvas\"]})}}i.Canvas=x,x.__name__=\"Canvas\",x.init_Canvas()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__=\"DOMView\",n.prototype.tagName=\"div\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;he.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText(\"m\").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[...this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[...this.references()].filter(t=>t instanceof e);throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=l,l.__name__=\"Model\",l.init_Model()},\n", - " function _(e,s,_){Object.defineProperty(_,\"__esModule\",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__=\"CoordinateTransform\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return\"data\"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,\"render\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"render\",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,\"clip\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"clip\",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;onew o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__=\"Arrow\",d.init_Arrow()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__=\"ArrowHead\",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__=\"OpenHead\",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__=\"NormalHead\",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__=\"VeeHead\",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__=\"TeeHead\",c.init_TeeHead()},\n", - " function _(t,n,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.lengthnew _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,\"select\"),this.inspect=new i.Signal(this,\"inspect\"),this.streaming=new i.Signal0(this,\"streaming\"),this.patching=new i.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__=\"ColumnarDataSource\",d.init_ColumnarDataSource()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__=\"DataSource\",r.init_DataSource()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__=\"Selection\",d.init_Selection()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i=\"replace\"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,\"replace\"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,\"replace\")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__=\"SelectionManager\",p.init_SelectionManager()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,\"fill\"),i=p.includes(e._mixins,\"line\"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):\"auto\"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):\"auto\"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[...this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__=\"GlyphRendererView\";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,\"auto\"],selection_glyph:[d.Any,\"auto\"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__=\"GlyphRenderer\",b.init_GlyphRenderer()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__=\"DataRendererView\";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:\"glyph\"})}}t.DataRenderer=s,s.__name__=\"DataRenderer\",s.init_DataRenderer()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;ee/2);r=new h.NumberArray(_);for(let i=0;i<_;i++)r[i]=t[i]-e[i];a=new h.NumberArray(_);for(let i=0;i<_;i++)a[i]=t[i]+e[i]}else{r=t,a=new h.NumberArray(_);for(let e=0;e<_;e++)a[e]=r[e]+i[e]}const l=e.v_compute(r),o=e.v_compute(a);return n?d.map(l,(e,t)=>Math.ceil(Math.abs(o[t]-l[t]))):d.map(l,(e,t)=>Math.abs(o[t]-l[t]))}draw_legend_for_index(e,t,i){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(o.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:i,sy0:s,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[...this.index.indices({x0:r,x1:a,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(e,t,i){var s,r;const{x_range:a,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=e.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,r=i.array(e);let l=t.select(r);if(i instanceof n.BaseCoordinateSpec){const e=\"x\"==i.dimension?a:_;if(e instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=e.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let t=0;t>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d>2];tthis._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__=\"_FlatBush\";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];on.x1&&(n.x1=i),dn.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__=\"SpatialIndex\"},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];ithis._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},\n", - " function _(s,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;ia.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[...t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,\"percent\"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[...e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[...e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__=\"FactorRange\",h.init_FactorRange()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__=\"Range\",r.init_Range()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;\"point\"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):\"v\"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},\n", - " function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,\"__esModule\",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join(\"-\");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;es[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__=\"DashAtlas\";const r={miter:0,round:1,bevel:2},l={\"\":0,none:0,\".\":0,round:1,\")\":1,\"(\":1,o:1,\"triangle in\":2,\"<\":2,\"triangle out\":3,\">\":3,square:4,\"[\":4,\"]\":4,\"=\":4,butt:5,\"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t1)for(let e=0;e0||console.log(`Variable ${t} is not an active attribute`));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h=\"vertexAttribPointer\",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log(\"Program has unset variables: \"+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error(\"Program validation error\")}draw(t,e){if(!this._linked)throw new Error(\"Cannot draw program if code has not been set\");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__=\"Program\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__=\"Buffer\";class r extends i{constructor(){super(...arguments),this._target=34962}}s.VertexBuffer=r,r.__name__=\"VertexBuffer\";class a extends i{constructor(){super(...arguments),this._target=34963}}s.IndexBuffer=a,a.__name__=\"IndexBuffer\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(`Type ${a.constructor.name} not allowed for texture`);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__=\"Texture2d\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__=\"BaseGLGlyph\"},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.vertex_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size, u_offset;\\nuniform vec2 u_scale_aspect;\\nuniform float u_scale_length;\\n\\nuniform vec4 u_color;\\nuniform float u_antialias;\\nuniform float u_length;\\nuniform float u_linewidth;\\nuniform float u_dash_index;\\nuniform float u_closed;\\n\\nattribute vec2 a_position;\\nattribute vec4 a_tangents;\\nattribute vec2 a_segment;\\nattribute vec2 a_angles;\\nattribute vec2 a_texcoord;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\nfloat cross(in vec2 v1, in vec2 v2)\\n{\\n return v1.x*v2.y - v1.y*v2.x;\\n}\\n\\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\\n{\\n return cross(v2-v1,v1-v3) / length(v2-v1);\\n}\\n\\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\\n{\\n float c = cos(alpha);\\n float s = sin(alpha);\\n result = vec2( c*v.x - s*v.y,\\n s*v.x + c*v.y );\\n}\\n\\nvoid main()\\n{\\n bool closed = (u_closed > 0.0);\\n\\n // Attributes and uniforms to varyings\\n v_color = u_color;\\n v_linewidth = u_linewidth;\\n v_segment = a_segment * u_scale_length;\\n v_length = u_length * u_scale_length;\\n\\n // Scale to map to pixel coordinates. The original algorithm from the paper\\n // assumed isotropic scale. We obviously do not have this.\\n vec2 abs_scale_aspect = abs(u_scale_aspect);\\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\\n\\n // Correct angles for aspect ratio\\n vec2 av;\\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\\n v_angles.x = atan(av.y, av.x);\\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\\n v_angles.y = atan(av.y, av.x);\\n\\n // Thickness below 1 pixel are represented using a 1 pixel thickness\\n // and a modified alpha\\n v_color.a = min(v_linewidth, v_color.a);\\n v_linewidth = max(v_linewidth, 1.0);\\n\\n // If color is fully transparent we just will discard the fragment anyway\\n if( v_color.a <= 0.0 ) {\\n gl_Position = vec4(0.0,0.0,0.0,1.0);\\n return;\\n }\\n\\n // This is the actual half width of the line\\n float w = ceil(u_antialias+v_linewidth)/2.0;\\n\\n vec2 position = a_position;\\n\\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\\n float u = a_texcoord.x;\\n float v = a_texcoord.y;\\n vec2 o1 = vec2( +t1.y, -t1.x);\\n vec2 o2 = vec2( +t2.y, -t2.x);\\n\\n // This is a join\\n // ----------------------------------------------------------------\\n if( t1 != t2 ) {\\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\\n vec2 t = normalize(t1+t2);\\n vec2 o = vec2( + t.y, - t.x);\\n\\n if ( u_dash_index > 0.0 )\\n {\\n // Broken angle\\n // ----------------------------------------------------------------\\n if( (abs(angle) > THETA) ) {\\n position += v * w * o / cos(angle/2.0);\\n float s = sign(angle);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position -= 2.0 * w * t1 / sin(angle);\\n u -= 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position += 2.0 * w * t2 / sin(angle);\\n u += 2.0*w / sin(angle);\\n }\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position += 2.0 * w * t1 / sin(angle);\\n u += 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position -= 2.0 * w * t2 / sin(angle);\\n u -= 2.0*w / sin(angle);\\n }\\n }\\n }\\n // Continuous angle\\n // ------------------------------------------------------------\\n } else {\\n position += v * w * o / cos(angle/2.0);\\n if( u == +1.0 ) u = v_segment.y;\\n else u = v_segment.x;\\n }\\n }\\n\\n // Solid line\\n // --------------------------------------------------------------------\\n else\\n {\\n position.xy += v * w * o / cos(angle/2.0);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n }\\n }\\n\\n // This is a line start or end (t1 == t2)\\n // ------------------------------------------------------------------------\\n } else {\\n position += v * w * o1;\\n if( u == -1.0 ) {\\n u = v_segment.x - w;\\n position -= w * t1;\\n } else {\\n u = v_segment.y + w;\\n position += w * t2;\\n }\\n }\\n\\n // Miter distance\\n // ------------------------------------------------------------------------\\n vec2 t;\\n vec2 curr = a_position * abs_scale;\\n if( a_texcoord.x < 0.0 ) {\\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\\n\\n rotate( t1, +v_angles.x/2.0, t);\\n v_miter.x = signed_distance(curr, curr+t, position);\\n\\n rotate( t2, +v_angles.y/2.0, t);\\n v_miter.y = signed_distance(next, next+t, position);\\n } else {\\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\\n\\n rotate( t1, -v_angles.x/2.0,t);\\n v_miter.x = signed_distance(prev, prev+t, position);\\n\\n rotate( t2, -v_angles.y/2.0,t);\\n v_miter.y = signed_distance(curr, curr+t, position);\\n }\\n\\n if (!closed && v_segment.x <= 0.0) {\\n v_miter.x = 1e10;\\n }\\n if (!closed && v_segment.y >= v_length)\\n {\\n v_miter.y = 1e10;\\n }\\n\\n v_texcoord = vec2( u, v*w );\\n\\n // Calculate position in device coordinates. Note that we\\n // already scaled with abs scale above.\\n vec2 normpos = position * sign(u_scale_aspect);\\n normpos += 0.5; // make up for Bokeh's offset\\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n}\\n\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.fragment_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform sampler2D u_dash_atlas;\\n\\nuniform vec2 u_linecaps;\\nuniform float u_miter_limit;\\nuniform float u_linejoin;\\nuniform float u_antialias;\\nuniform float u_dash_phase;\\nuniform float u_dash_period;\\nuniform float u_dash_index;\\nuniform vec2 u_dash_caps;\\nuniform float u_closed;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\n// Compute distance to cap ----------------------------------------------------\\nfloat cap( int type, float dx, float dy, float t, float linewidth )\\n{\\n float d = 0.0;\\n dx = abs(dx);\\n dy = abs(dy);\\n if (type == 0) discard; // None\\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\\n else if (type == 4) d = max(dx,dy); // Square\\n else if (type == 5) d = max(dx+t,dy); // Butt\\n return d;\\n}\\n\\n// Compute distance to join -------------------------------------------------\\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\\n in float linewidth )\\n{\\n // texcoord.x is distance from start\\n // texcoord.y is distance from centerline\\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\\n\\n float dx = texcoord.x;\\n\\n // Round join\\n if( type == 1 ) {\\n if (dx < segment.x) {\\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\\n //d = length( texcoord - vec2(segment.x,0.0));\\n } else if (dx > segment.y) {\\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\\n //d = length( texcoord - vec2(segment.y,0.0));\\n }\\n }\\n // Bevel join\\n else if ( type == 2 ) {\\n if (dx < segment.x) {\\n vec2 x = texcoord - vec2(segment.x,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n\\n } else if (dx > segment.y) {\\n vec2 x = texcoord - vec2(segment.y,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n }\\n /* Original code for bevel which does not work for us\\n if( (dx < segment.x) || (dx > segment.y) )\\n d = max(d, min(abs(x.x),abs(x.y)));\\n */\\n }\\n\\n return d;\\n}\\n\\nvoid main()\\n{\\n // If color is fully transparent we just discard the fragment\\n if( v_color.a <= 0.0 ) {\\n discard;\\n }\\n\\n // Test if dash pattern is the solid one (0)\\n bool solid = (u_dash_index == 0.0);\\n\\n // Test if path is closed\\n bool closed = (u_closed > 0.0);\\n\\n vec4 color = v_color;\\n float dx = v_texcoord.x;\\n float dy = v_texcoord.y;\\n float t = v_linewidth/2.0-u_antialias;\\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\\n float d = 0.0;\\n\\n vec2 linecaps = u_linecaps;\\n vec2 dash_caps = u_dash_caps;\\n float line_start = 0.0;\\n float line_stop = v_length;\\n\\n // Apply miter limit; fragments too far into the miter are simply discarded\\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\\n if (into_miter > u_miter_limit*v_linewidth/2.0)\\n discard;\\n }\\n\\n // Solid line --------------------------------------------------------------\\n if( solid ) {\\n d = abs(dy);\\n if( (!closed) && (dx < line_start) ) {\\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\\n }\\n else if( (!closed) && (dx > line_stop) ) {\\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\\n }\\n else {\\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\\n }\\n\\n // Dash line --------------------------------------------------------------\\n } else {\\n float segment_start = v_segment.x;\\n float segment_stop = v_segment.y;\\n float segment_center= (segment_start+segment_stop)/2.0;\\n float freq = u_dash_period*width;\\n float u = mod( dx + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n float dash_center= tex.x * width;\\n float dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n float dash_start = dx - u + _start;\\n float dash_stop = dx - u + _stop;\\n\\n // Compute extents of the first dash (the one relative to v_segment.x)\\n // Note: this could be computed in the vertex shader\\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\\n float u = mod(segment_start + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_start - u + _start;\\n dash_stop = segment_start - u + _stop;\\n }\\n\\n // Compute extents of the last dash (the one relatives to v_segment.y)\\n // Note: This could be computed in the vertex shader\\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\\n float u = mod(segment_stop + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_stop - u + _start;\\n dash_stop = segment_stop - u + _stop;\\n }\\n\\n // This test if the we are dealing with a discontinuous angle\\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\\n //if( dx < line_start) discontinuous = false;\\n //if( dx > line_stop) discontinuous = false;\\n\\n float d_join = join( int(u_linejoin), abs(dy),\\n v_segment, v_texcoord, v_miter, v_linewidth );\\n\\n // When path is closed, we do not have room for linecaps, so we make room\\n // by shortening the total length\\n if (closed) {\\n line_start += v_linewidth/2.0;\\n line_stop -= v_linewidth/2.0;\\n }\\n\\n // We also need to take antialias area into account\\n //line_start += u_antialias;\\n //line_stop -= u_antialias;\\n\\n // Check is dash stop is before line start\\n if( dash_stop <= line_start ) {\\n discard;\\n }\\n // Check is dash start is beyond line stop\\n if( dash_start >= line_stop ) {\\n discard;\\n }\\n\\n // Check if current dash start is beyond segment stop\\n if( discontinuous ) {\\n // Dash start is beyond segment, we discard\\n if( (dash_start > segment_stop) ) {\\n discard;\\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\\n }\\n\\n // Dash stop is before segment, we discard\\n if( (dash_stop < segment_start) ) {\\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.x == 1.0 ) {\\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.y == 1.0 ) {\\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\\n float a = v_angles.x/2.0;\\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the cap into square to avoid holes\\n dash_caps.x = 4.0;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\\n float a = v_angles.y/2.0;\\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the caps into square to avoid holes\\n dash_caps.y = 4.0;\\n }\\n }\\n }\\n\\n // Line cap at start\\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\\n }\\n // Line cap at stop\\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\\n }\\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\\n else if( dash_type < -0.5 ) {\\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash cap right\\n else if( dash_type > 0.5 ) {\\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash body (plain)\\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\\n d = abs(dy);\\n }\\n\\n // Line join\\n if( (dx > line_start) && (dx < line_stop)) {\\n if( (dx <= segment_start) && (dash_start <= segment_start)\\n && (dash_stop >= segment_start) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.x;\\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\\n && (dash_stop >= segment_stop) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.y;\\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n\\n // Distance to border ------------------------------------------------------\\n d = d - t;\\n if( d < 0.0 ) {\\n gl_FragColor = color;\\n } else {\\n d /= u_antialias;\\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\\n }\\n}\\n\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__=\"PatchView\";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__=\"Patch\",r.init_Patch()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r=0;t--)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e=0;s--)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;ethis.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;ithis._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__=\"CDSView\",a.init_CDSView()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([...e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__=\"GraphRendererView\";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__=\"GraphRenderer\",d.init_GraphRenderer()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__=\"GraphHitTestPolicy\";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__=\"NodesOnly\";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];\"selection\"==n?d=e.selected.indices.map(t=>e.data.index[t]):\"inspection\"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;es.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,\"inspection\");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__=\"EdgesAndLinkedNodes\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__=\"SelectionPolicy\";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__=\"IntersectRenderers\";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__=\"UnionRenderers\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.concat=function(t,...e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},\n", - " function _(n,o,e){function t(...n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,\"__esModule\",{value:!0}),e.union=t,e.intersection=function(n,...o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,...o){const e=new Set(n);for(const n of t(...o))e.delete(n);return e}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__=\"DocumentEvent\";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__=\"DocumentEventBatch\";class d extends o{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__=\"MessageSentEvent\";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if(\"id\"===this.attr)throw new Error(\"'id' field should never change, whatever code just set it is wrong\");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__=\"ModelChangedEvent\";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__=\"ColumnsPatchedEvent\";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__=\"ColumnsStreamedEvent\";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=h,h.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:\"RootAdded\",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__=\"RootRemovedEvent\"},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;snew r.ColumnDataSource]})}}i.UpperLower=a,a.__name__=\"UpperLower\",a.init_UpperLower()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:\"data\"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&tthis.stop&&ithis.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch(\"vertical\"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case\"vertical\":[t,e]=[1,i.length];break;case\"horizontal\":[t,e]=[i.length,1]}const o=document.createElement(\"canvas\");o.width=t,o.height=e;const a=o.getContext(\"2d\"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case\"vertical\":n=e+a+2*r,l=i+s+o+2*r;break;case\"horizontal\":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case\"top_left\":l=s.start+o,_=r.start+o;break;case\"top_center\":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case\"top_right\":l=s.end-o-i,_=r.start+o;break;case\"bottom_right\":l=s.end-o-i,_=r.end-o-e;break;case\"bottom_center\":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case\"bottom_left\":l=s.start+o,_=r.end-o-e;break;case\"center_left\":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case\"center\":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case\"center_right\":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;ei.measureText(t.toString()).width));break;case\"horizontal\":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return\"vertical\"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+\" \"+this.model.title_text_font_size+\" \"+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case\"vertical\":\"auto\"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a=\"auto\"==this.model.width?25:this.model.width;break;case\"horizontal\":o=\"auto\"==this.model.height?25:this.model.height,\"auto\"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;tr||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;tr||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],\"vertical\"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__=\"ColorBarView\";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([[\"major_label_\",d.Text],[\"title_\",d.Text],[\"major_tick_\",d.Line],[\"minor_tick_\",d.Line],[\"border_\",d.Line],[\"bar_\",d.Line],[\"background_\",d.Fill]]),this.define({location:[c.Any,\"top_right\"],orientation:[c.Orientation,\"vertical\"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,\"auto\"],height:[c.Any,\"auto\"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:\"center\",major_label_text_baseline:\"middle\",major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}}i.ColorBar=w,w.__name__=\"ColorBar\",w.init_ColorBar()},\n", - " function _(e,c,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__=\"BasicTicker\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__=\"AdaptiveTicker\",_.init_AdaptiveTicker()},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__=\"ContinuousTicker\",_.init_ContinuousTicker()},\n", - " function _(e,c,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__=\"Ticker\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,\"auto\"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t=1;r?s++:s--){if(t){e[0]=i[0].toExponential(s);for(let t=1;tu(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:(\"#\"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+=\"ff\"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;rt)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__=\"ColorMapper\",u.init_ColorMapper()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error(\"mapping single values is not supported\")}}n.Mapper=s,s.__name__=\"Mapper\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__=\"Transform\"},\n", - " function _(r,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,\"circle\"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__=\"CategoricalMarkerMapper\",n.init_CategoricalMarkerMapper()},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType,\" \"]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__=\"CategoricalPatternMapper\",c.init_CategoricalPatternMapper()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[...this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([...n],s):null!=n?c=[...n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[...this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;na?e:r[l]}}o.LinearColorMapper=a,a.__name__=\"LinearColorMapper\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(ol&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__=\"LogColorMapper\"},\n", - " function _(n,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(nt.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__=\"ScanningColorMapper\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;nn/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;nthis._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;rs*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case\"before\":e=i.find_index(this._x_sorted,e=>t<=e);break;case\"center\":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error(\"unknown mode: \"+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__=\"StepInterpolator\",n.init_StepInterpolator()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__=\"LinearInterpolationScale\",_.init_LinearInterpolationScale()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;ethis.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||\"css\"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case\"left\":l=0;break;case\"center\":l=-s/2;break;case\"right\":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case\"top\":a=0;break;case\"middle\":a=-.5*i;break;case\"bottom\":a=-1*i;break;case\"alphabetic\":a=-.8*i;break;case\"hanging\":a=-.17*i;break;case\"ideographic\":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?\"solid\":\"dashed\";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position=\"absolute\",n.style.left=s+o[0]+\"px\",n.style.top=i+o[1]+\"px\",n.style.color=\"\"+this.visuals.text.text_color.value(),n.style.opacity=\"\"+this.visuals.text.text_alpha.value(),n.style.font=\"\"+this.visuals.text.font_value(),n.style.lineHeight=\"normal\",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=\"\"+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=\"\"+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+\"px\",n.style.borderColor=\"\"+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__=\"TextAnnotationView\";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,\"canvas\"]})}}s.TextAnnotation=u,u.__name__=\"TextAnnotation\",u.init_TextAnnotation()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),\"css\"==this.model.render_mode)for(let t=0,e=this._text.length;t{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return[\"data\"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),\"data\"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;onew l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__=\"LabelSet\",h.init_LabelSet()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([...this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if(\"vertical\"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case\"top_left\":y=p.start+a,k=w.start+a;break;case\"top_center\":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case\"top_right\":y=p.end-a-f,k=w.start+a;break;case\"bottom_right\":y=p.end-a-f,k=w.end-a-u;break;case\"bottom_center\":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case\"bottom_left\":y=p.start+a,k=w.end-a-u;break;case\"center_left\":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case\"center\":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case\"center_right\":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of d.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return r.every(d.renderers,t=>t.visible);case\"mute\":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__=\"LegendView\";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,\"item_change\")}static init_Legend(){this.prototype.default_view=g,this.mixins([[\"label_\",n.Text],[\"title_\",n.Text],[\"inactive_\",n.Fill],[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({orientation:[h.Orientation,\"vertical\"],location:[h.Any,\"top_right\"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,\"none\"]}),this.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=m,m.__name__=\"Legend\",m.init_Legend()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||_.logger.error(\"Bad column name on label: \"+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):[\"Invalid field\"]}}return[]}}n.LegendItem=u,u.__name__=\"LegendItem\",u.init_LegendItem()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&\"value\"in e},n.isField=function(e){return t.isPlainObject(e)&&\"field\"in e}},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;sthis.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__=\"SlopeView\";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:\"black\"})}}i.Slope=_,_.__name__=\"Slope\",_.init_Slope()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;\"width\"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),\"width\"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__=\"SpanView\";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,\"canvas\"],location:[a.Number,null],location_units:[a.SpatialUnits,\"data\"],dimension:[a.Dimension,\"width\"]}),this.override({line_color:\"black\"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__=\"Span\",r.init_Span()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":l=s.top+5;break;case\"middle\":l=s.vcenter;break;case\"bottom\":l=s.bottom-5}switch(this.model.align){case\"left\":i=s.left+e;break;case\"center\":i=s.hcenter;break;case\"right\":i=s.right-e}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=s.left-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.right+5}switch(this.model.align){case\"left\":l=s.bottom-e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.top+e}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=s.right-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.left+5}switch(this.model.align){case\"left\":l=s.top+e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__=\"TitleView\";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,\"helvetica\"],text_font_size:[o.StringSpec,\"13px\"],text_font_style:[o.FontStyle,\"bold\"],text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,\"bottom\"],align:[o.TextAlign,\"left\"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,\"left\"],text_baseline:[o.TextBaseline,\"bottom\"]})}}i.Title=c,c.__name__=\"Title\",c.init_Title()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(...arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__=\"ToolbarPanelView\";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__=\"ToolbarPanel\",h.init_ToolbarPanel()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[...super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case\"horizontal\":return eo.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__=\"Tooltip\",d.init_Tooltip()},\n", - " function _(o,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tooltip=\"bk-tooltip\",l.bk_tooltip_arrow=\"bk-tooltip-arrow\",l.bk_tooltip_custom=\"bk-tooltip-custom\",l.bk_tooltip_row_label=\"bk-tooltip-row-label\",l.bk_tooltip_row_value=\"bk-tooltip-row-value\",l.bk_tooltip_color_block=\"bk-tooltip-color-block\"},\n", - " function _(e,b,k){Object.defineProperty(k,\"__esModule\",{value:!0}),k.bk_active=\"bk-active\",k.bk_inline=\"bk-inline\",k.bk_left=\"bk-left\",k.bk_right=\"bk-right\",k.bk_above=\"bk-above\",k.bk_below=\"bk-below\",k.bk_up=\"bk-up\",k.bk_down=\"bk-down\",k.bk_side=function(e){switch(e){case\"above\":return k.bk_above;case\"below\":return k.bk_below;case\"left\":return k.bk_left;case\"right\":return k.bk_right}}},\n", - " function _(o,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root {\\n /* Same border color used everywhere */\\n /* Gray of icons */\\n}\\n.bk-root .bk-tooltip {\\n font-weight: 300;\\n font-size: 12px;\\n position: absolute;\\n padding: 5px;\\n border: 1px solid #e5e5e5;\\n color: #2f2f2f;\\n background-color: white;\\n pointer-events: none;\\n opacity: 0.95;\\n z-index: 100;\\n}\\n.bk-root .bk-tooltip > div:not(:first-child) {\\n /* gives space when multiple elements are being hovered over */\\n margin-top: 5px;\\n border-top: #e5e5e5 1px dashed;\\n}\\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-left::before {\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right::after {\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-above::before {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n top: -10px;\\n border-bottom-width: 10px;\\n border-bottom-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-below::after {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n bottom: -10px;\\n border-top-width: 10px;\\n border-top-color: #909599;\\n}\\n.bk-root .bk-tooltip-row-label {\\n text-align: right;\\n color: #26aae1;\\n /* blue from toolbar highlighting */\\n}\\n.bk-root .bk-tooltip-row-value {\\n color: default;\\n /* seems to be necessary for notebook */\\n}\\n.bk-root .bk-tooltip-color-block {\\n width: 12px;\\n height: 12px;\\n margin-left: 5px;\\n margin-right: 5px;\\n outline: #dddddd solid 1px;\\n display: inline-block;\\n}\\n'},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;snew o.TeeHead({level:\"underlay\",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:\"underlay\",size:10})]}),this.override({level:\"underlay\"})}}t.Whisker=_,_.__name__=\"Whisker\",_.init_Whisker()},\n", - " function _(i,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(...arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;ec&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;ih(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;ic||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error(\"unexpected\")}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__=\"AxisView\";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([[\"axis_\",l.Line],[\"major_tick_\",l.Line],[\"minor_tick_\",l.Line],[\"major_label_\",l.Text],[\"axis_label_\",l.Text]]),this.define({bounds:[n.Any,\"auto\"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,\"\"],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,\"horizontal\"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})}}i.Axis=b,b.__name__=\"Axis\",b.init_Axis()},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__=\"GuideRendererView\";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:\"guide\"})}}d.GuideRenderer=t,t.__name__=\"GuideRenderer\",t.init_GuideRenderer()},\n", - " function _(t,s,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&ht[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__=\"CategoricalAxisView\";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([[\"separator_\",l.Line],[\"group_\",l.Text],[\"subgroup_\",l.Text]]),this.define({group_label_orientation:[_.Any,\"parallel\"],subgroup_label_orientation:[_.Any,\"parallel\"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})}}o.CategoricalAxis=h,h.__name__=\"CategoricalAxis\",h.init_CategoricalAxis()},\n", - " function _(t,c,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&tnew r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__=\"DatetimeAxis\",_.init_DatetimeAxis()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__=\"LinearAxis\",c.init_LinearAxis()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,\"%Y %m %d %H %M %S\").split(/\\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf(\"$1%06d\",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?s:i.default(t,s)}}const l=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,[\"%fus\"]],milliseconds:[a.Array,[\"%3Nms\",\"%S.%3Ns\"]],seconds:[a.Array,[\"%Ss\"]],minsec:[a.Array,[\":%M:%S\"]],minutes:[a.Array,[\":%M\",\"%Mm\"]],hourmin:[a.Array,[\"%H:%M\"]],hours:[a.Array,[\"%Hh\",\"%H:%M\"]],days:[a.Array,[\"%m/%d\",\"%a%d\"]],months:[a.Array,[\"%m/%Y\",\"%b %Y\"]],years:[a.Array,[\"%Y\"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return s>=60?\"minsec\":\"seconds\";case!(e<3600):return s>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn(\"unable to format tick for timestamp value \"+s),o.logger.warn(\" - \"+t),a.push(\"ERR\");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!r){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,\"\");s!=t&&isNaN(parseInt(s))&&(s=\"0\"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__=\"DatetimeTickFormatter\",_.init_DatetimeTickFormatter()},\n", - " function _(e,t,n){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", - " function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n", - " function _(e,n,t){\n", - " /*!\n", - " * numbro.js\n", - " * version : 1.6.2\n", - " * author : Företagsplatsen AB\n", - " * license : MIT\n", - " * http://www.foretagsplatsen.se\n", - " */\n", - " var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+s(i-r.length),n>0&&(a+=\".\"+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function d(e,n,t){return n.indexOf(\"$\")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf(\"$\"),c=l.indexOf(\"(\"),s=l.indexOf(\"+\"),f=l.indexOf(\"-\"),d=\"\",p=\"\";-1===l.indexOf(\"$\")?\"infix\"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=\" \"+p+\" \")):i[o].currency.spaceSeparated&&(d=\" \"):l.indexOf(\" $\")>-1?(d=\" \",l=l.replace(\" $\",\"\")):l.indexOf(\"$ \")>-1?(d=\" \",l=l.replace(\"$ \",\"\")):l=l.replace(\"$\",\"\");if(a=h(e,l,t,p),-1===n.indexOf(\"$\"))switch(i[o].currency.position){case\"postfix\":a.indexOf(\")\")>-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;break;case\"infix\":break;case\"prefix\":a.indexOf(\"(\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join(\"\")):a=i[o].currency.symbol+d+a;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else u<=1?a.indexOf(\"(\")>-1||a.indexOf(\"+\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=1,(u-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=h(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?f(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?f(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=f(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+i[o].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},\n", - " function _(e,n,t){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__=\"DatetimeTicker\",k.init_DatetimeTicker()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__=\"CompositeTicker\",a.init_CompositeTicker()},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__=\"DaysTicker\",_.init_DaysTicker()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__=\"SingleIntervalTicker\",a.init_SingleIntervalTicker()},\n", - " function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,\"__esModule\",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__=\"MonthsTicker\",_.init_MonthsTicker()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__=\"YearsTicker\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__=\"LogAxisView\";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__=\"LogAxis\",c.init_LogAxis()},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__=\"LogTickFormatter\",c.init_LogTickFormatter()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__=\"LogTicker\",n.init_LogTicker()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__=\"MercatorAxisView\";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:\"lat\"}),formatter:()=>new o.MercatorTickFormatter({dimension:\"lat\"})})}}r.MercatorAxis=n,n.__name__=\"MercatorAxis\",n.init_MercatorAxis()},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error(\"HTML output is not supported in this context\");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__=\"OpenURL\",a.init_OpenURL()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__=\"CartesianFrame\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__=\"CategoricalScale\"},\n", - " function _(t,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,\"percent\"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,\"auto\"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(`computed ${i.length} renderers for ${this}`);for(const t of i)l.logger.trace(\" - \"+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e_&&(\"start\"==this.follow?a=e+s*_:\"end\"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}\"auto\"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__=\"DataRange1d\",h.init_DataRange1d()},\n", - " function _(e,a,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__=\"DataRange\",_.init_DataRange()},\n", - " function _(a,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},\n", - " function _(t,h,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__=\"Sizeable\",i.SizingPolicy=e.Enum(\"fixed\",\"fit\",\"min\",\"max\")},\n", - " function _(i,t,h){Object.defineProperty(h,\"__esModule\",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||\"fit\",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||\"fit\",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||\"start\",o=i.valign||\"start\";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return\"max\"==this.sizing.width_policy}is_height_expanding(){return\"max\"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=s&&\"fixed\"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else\"fixed\"==s?h=a(t/e):\"fixed\"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__=\"Layoutable\";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case\"fixed\":e=null!=this.sizing.width?this.sizing.width:0;break;case\"min\":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case\"fit\":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case\"max\":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case\"fixed\":s=null!=this.sizing.height?this.sizing.height:0;break;case\"min\":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case\"fit\":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case\"max\":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__=\"LayoutItem\";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__=\"ContentLayoutable\"},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(...arguments),this.children=[]}}h.Stack=i,i.__name__=\"Stack\";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__=\"HStack\";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__=\"VStack\";class c extends o.Layoutable{constructor(){super(...arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case\"top_left\":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case\"top_center\":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case\"top_right\":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case\"bottom_right\":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case\"bottom_center\":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case\"bottom_left\":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case\"center_left\":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case\"center\":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case\"center_right\":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__=\"AnchorLayout\"},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__=\"DefaultMap\";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__=\"Container\";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[\"*\"]:this.rows;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||\"auto\";if(\"fixed\"==i.policy)e[s]={policy:\"fixed\",height:i.height,align:o};else if(\"min\"==i.policy)e[s]={policy:\"min\",align:o};else if(\"fit\"==i.policy||\"max\"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:\"max\",flex:1,align:o}:e[s]={policy:\"min\",align:o}}}const o=new Array(s);for(let i=0;i{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[\"*\"]:this.cols;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||\"auto\";if(\"fixed\"==s.policy)o[i]={policy:\"fixed\",width:s.width,align:e};else if(\"min\"==s.policy)o[i]={policy:\"min\",align:e};else if(\"fit\"==s.policy||\"max\"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if(\"auto\"!=s.policy)throw new Error(\"unrechable\");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:\"max\",flex:1,align:e}:o[i]={policy:\"min\",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];\"fixed\"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];\"fixed\"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}});let a;a=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}g=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&\"auto\"!=f[i].align?f[i].align:g.halign,y=t==s&&\"auto\"!=_[t].align?_[t].align:g.valign;let x=f[i].left;\"start\"==m?x+=g.margin.left:\"center\"==m?x+=c((w-p)/2):\"end\"==m&&(x+=w-g.margin.right-p);let b=_[t].top;\"start\"==y?b+=g.margin.top:\"center\"==y?b+=c((u-d)/2):\"end\"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__=\"Grid\";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows=\"fit\"}}s.Row=_,_.__name__=\"Row\";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols=\"fit\"}}s.Column=f,f.__name__=\"Column\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__=\"ContentBox\";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__=\"VariadicBox\";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__=\"CachedVariadicBox\"},\n", - " function _(e,r,u){Object.defineProperty(u,\"__esModule\",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__=\"Expression\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);tn(t,e,r,...this.values))}}n.FuncTickFormatter=u,u.__name__=\"FuncTickFormatter\",u.init_FuncTickFormatter()},\n", - " function _(r,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,\"0,0\"],language:[i.String,\"en\"],rounding:[i.RoundingFunction,\"round\"]})}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__=\"NumeralTickFormatter\",u.init_NumeralTickFormatter()},\n", - " function _(t,r,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,\"%s\"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__=\"PrintfTickFormatter\",c.init_PrintfTickFormatter()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__=\"AnnularWedgeView\";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,\"anticlock\"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__=\"AnnularWedge\",l.init_AnnularWedge()},\n", - " function _(s,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if(\"data\"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__=\"AnnulusView\";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__=\"Annulus\",d.init_Annulus()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__=\"ArcView\";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,\"anticlock\"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__=\"Arc\",d.init_Arc()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0Math.max(s,i[e]));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&\"data\"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&\"data\"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&\"data\"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_attribute(\"a_sx\",\"float\",i.vbo_sx),this.prog.set_attribute(\"a_sy\",\"float\",i.vbo_sy),this.prog.set_attribute(\"a_size\",\"float\",i.vbo_s),this.prog.set_attribute(\"a_angle\",\"float\",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf(\"MSIE \")+e.indexOf(\"Trident/\")+e.indexOf(\"Edge/\")>0&&n.logger.warn(\"WebGL warning: IE is known to produce 1px sprites whith selections.\"),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,\"a_linewidth\",t,this.glyph.visuals.line,\"line_width\"),f(this.prog,this.vbo_fg_color,\"a_fg_color\",t,this.glyph.visuals.line,\"line\"),f(this.prog,this.vbo_bg_color,\"a_bg_color\",t,this.glyph.visuals.fill,\"fill\"),this.prog.set_uniform(\"u_antialias\",\"float\",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__=\"MarkerGL\";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},\n", - " function _(n,i,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.vertex_shader=\"\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\n//\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform vec2 u_offset;\\nuniform vec2 u_scale;\\nuniform float u_antialias;\\n//\\nattribute float a_sx;\\nattribute float a_sy;\\nattribute float a_size;\\nattribute float a_angle; // in radians\\nattribute float a_linewidth;\\nattribute vec4 a_fg_color;\\nattribute vec4 a_bg_color;\\n//\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying vec2 v_rotation;\\n\\nvoid main (void)\\n{\\n v_size = a_size * u_pixel_ratio;\\n v_linewidth = a_linewidth * u_pixel_ratio;\\n v_fg_color = a_fg_color;\\n v_bg_color = a_bg_color;\\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\\n vec2 pos = vec2(a_sx, a_sy); // in pixels\\n pos += 0.5; // make up for Bokeh's offset\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n}\\n\"},\n", - " function _(a,n,s){Object.defineProperty(s,\"__esModule\",{value:!0}),s.fragment_shader=a=>`\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\nconst float PI = 3.14159265358979323846264;\\n//\\nuniform float u_antialias;\\n//\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec2 v_rotation;\\n\\n${a}\\n\\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\\n{\\n vec4 frag_color;\\n float t = linewidth/2.0 - antialias;\\n float signed_distance = distance;\\n float border_distance = abs(signed_distance) - t;\\n float alpha = border_distance/antialias;\\n alpha = exp(-alpha*alpha);\\n\\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\\n float select = float(bool(fg_color.a));\\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\\n // Similarly, if we want a transparent bg\\n select = float(bool(bg_color.a));\\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\\n\\n if( border_distance < 0.0)\\n frag_color = fg_color;\\n else if( signed_distance < 0.0 ) {\\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\\n } else {\\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\\n } else {\\n discard;\\n }\\n }\\n return frag_color;\\n}\\n\\nvoid main()\\n{\\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\\n v_rotation.y*P.x + v_rotation.x*P.y);\\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n float distance = marker(P*point_size, v_size);\\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\\n}\\n`,s.circle=\"\\nfloat marker(vec2 P, float size)\\n{\\n return length(P) - size/2.0;\\n}\\n\",s.square=\"\\nfloat marker(vec2 P, float size)\\n{\\n return max(abs(P.x), abs(P.y)) - size/2.0;\\n}\\n\",s.diamond=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n return r1 / SQRT_2;\\n}\\n\",s.hex=\"\\nfloat marker(vec2 P, float size)\\n{\\n vec2 q = abs(P);\\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\\n}\\n\",s.triangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y -= size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.invertedtriangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y += size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = - P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.cross='\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(square, cross);\\n}\\n',s.circlecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.squarecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.diamondcross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n diamond /= SQRT_2;\\n float c1 = max(diamond, s1);\\n float c2 = max(diamond, s2);\\n float c3 = max(diamond, s3);\\n float c4 = max(diamond, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.x='\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size / 1.6;\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(circle, X);\\n}\\n',s.circlex='\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n float almost = min(min(min(c1, c2), c3), c4);\\n // In this case, the X is also outside of the main shape\\n float Xmask = length(P) - size / 1.6; // a circle\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return min(max(X, Xmask), almost);\\n}\\n',s.squarex=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.asterisk='\\nfloat marker(vec2 P, float size)\\n{\\n // Masks\\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\\n // Shapes\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n // Result is union of masked shapes\\n return min(max(X, diamond), max(cross, square));\\n}\\n'},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__=\"CenterRotatable\",o.init_CenterRotatable()},\n", - " function _(e,l,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__=\"EllipseView\";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__=\"Ellipse\",_.init_Ellipse()},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,\"data\"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,\"data\"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,\"center\"):this.sw=this._width,\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);\"data\"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),\"data\"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__=\"EllipseOvalView\";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__=\"EllipseOval\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;sthis._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__=\"ImageView\";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})}}a.Image=o,o.__name__=\"Image\",o.init_Image()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;tthis.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;snull));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s=\"data\"==this.model.properties.w.units,r=\"data\"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case\"top_left\":case\"bottom_left\":case\"center_left\":return[e,e+t];case\"top_center\":case\"bottom_center\":case\"center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"center_right\":return[e-t,e]}}function d(e,t){switch(c){case\"top_left\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"center_left\":case\"center\":case\"center_right\":return[e+t/2,e-t/2]}}if(s)for(let e=0;eNaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case\"data\":this.sw=this.sdist(this.renderer.xscale,this._x,e,\"edge\",this.model.dilate);break;case\"screen\":this.sw=e}switch(this.model.properties.h.units){case\"data\":this.sh=this.sdist(this.renderer.yscale,this._y,t,\"edge\",this.model.dilate);break;case\"screen\":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case\"top_left\":return[t,s];case\"top_center\":return[t-r/2,s];case\"top_right\":return[t-r,s];case\"center_right\":return[t-r,s-i/2];case\"bottom_right\":return[t-r,s-i];case\"bottom_center\":return[t-r/2,s-i];case\"bottom_left\":return[t,s-i];case\"center_left\":return[t,s-i/2];case\"center\":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__=\"ImageURLView\";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,\"top_left\"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__=\"ImageURL\",c.init_ImageURL()},\n", - " function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__=\"ImageLoader\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i0&&o.set(e,i)}return new d.Selection({indices:[...o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+\".scenterxy() is not implemented\")}}i.MultiLineView=y,y.__name__=\"MultiLineView\";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:\"xs\"}],ys:[r.YCoordinateSeqSpec,{field:\"ys\"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__=\"MultiLine\",x.init_MultiLine()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n1&&d.length>1)for(let s=1,i=n.length;s{this._inner_loop(e,t,o),e.fill(\"evenodd\")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e1){let r=!1;for(let e=1;ethis._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__=\"StepView\";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,\"before\"]})}}i.Step=_,_.__name__=\"Step\",_.init_Step()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=\"\"+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select(\"font\",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf(\"\\n\")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split(\"\\n\"),h=x*o.length,l=this.visuals.text.cache_select(\"text_baseline\",a);let r;switch(l){case\"top\":r=0;break;case\"middle\":r=-h/2+x/2;break;case\"bottom\":r=-h+x;break;default:r=0,console.warn(`'${l}' baseline not supported with multi line text`)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;tthis.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords(\"major\",!1);for(let s=0;s{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords(\"major\");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords(\"minor\");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;et[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;ithis.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__=\"BoxView\";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__=\"Box\",r.init_Box()},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(...arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:\"\",l.classes(this.el).clear().add(...this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(`layout computed in ${Date.now()-i} ms`),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;\"auto\"==i&&(i=this._width_policy()),\"auto\"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)i=t=\"fixed\";else if(\"stretch_both\"==s)i=t=\"max\";else if(\"stretch_width\"==s)i=\"max\";else if(\"stretch_height\"==s)t=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":i=\"max\",t=\"min\";break;case\"scale_height\":i=\"min\",t=\"max\";break;case\"scale_both\":i=\"max\",t=\"max\"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),\"auto\"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e=\"png\"==i?\"canvas\":\"svg\",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__=\"LayoutDOMView\";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),\"auto\"],height_policy:[d(_.SizingPolicy,n),\"auto\"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),\"start\"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__=\"LayoutDOM\",m.init_LayoutDOM()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_root=\"bk-root\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__=\"ColumnView\";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,\"auto\"]})}}i.Column=_,_.__name__=\"Column\",_.init_Column()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__=\"GridBoxView\";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,\"auto\"],cols:[l.Any,\"auto\"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__=\"GridBox\",a.init_GridBox()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__=\"HTMLBoxView\";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__=\"HTMLBox\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__=\"RowView\";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,\"auto\"]})}}i.Row=l,l.__name__=\"Row\",l.init_Row()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__=\"SpacerView\";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__=\"Spacer\",o.init_Spacer()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[...super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let o=1,c=1;switch(e){case\"above\":o-=1;break;case\"below\":o+=1;break;case\"left\":c-=1;break;case\"right\":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,...r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth=\"\",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight=\"\",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s=\"above\"==t||\"below\"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener(\"click\",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener(\"click\",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:\"\"},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c=\"left\"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute(\"disabled\",\"\"):a.removeAttribute(\"disabled\"),c==t-1?o.setAttribute(\"disabled\",\"\"):o.removeAttribute(\"disabled\");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+\"px\"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+\"px\"}};a.addEventListener(\"click\",d(\"left\")),o.addEventListener(\"click\",d(\"right\")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__=\"TabsView\";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,\"above\"],active:[o.Number,0]})}}s.Tabs=g,g.__name__=\"Tabs\",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,\"\"],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__=\"Panel\",w.init_Panel()},\n", - " function _(e,b,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.bk_tabs_header=\"bk-tabs-header\",a.bk_headers_wrapper=\"bk-headers-wrapper\",a.bk_headers=\"bk-headers\",a.bk_tab=\"bk-tab\",a.bk_close=\"bk-close\"},\n", - " function _(n,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_btn=\"bk-btn\",t.bk_btn_group=\"bk-btn-group\",t.bk_btn_default=\"bk-btn-default\",t.bk_btn_primary=\"bk-btn-primary\",t.bk_btn_success=\"bk-btn-success\",t.bk_btn_warning=\"bk-btn-warning\",t.bk_btn_danger=\"bk-btn-danger\",t.bk_btn_type=function(n){switch(n){case\"default\":return t.bk_btn_default;case\"primary\":return t.bk_btn_primary;case\"success\":return t.bk_btn_success;case\"warning\":return t.bk_btn_warning;case\"danger\":return t.bk_btn_danger}},t.bk_dropdown_toggle=\"bk-dropdown-toggle\"},\n", - " function _(e,b,d){Object.defineProperty(d,\"__esModule\",{value:!0}),d.bk_menu=\"bk-menu\",d.bk_caret=\"bk-caret\",d.bk_divider=\"bk-divider\"},\n", - " function _(n,o,b){Object.defineProperty(b,\"__esModule\",{value:!0});b.default=\"\\n.bk-root .bk-btn {\\n height: 100%;\\n display: inline-block;\\n text-align: center;\\n vertical-align: middle;\\n white-space: nowrap;\\n cursor: pointer;\\n padding: 6px 12px;\\n font-size: 12px;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n outline: 0;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-btn:hover,\\n.bk-root .bk-btn:focus {\\n text-decoration: none;\\n}\\n.bk-root .bk-btn:active,\\n.bk-root .bk-btn.bk-active {\\n background-image: none;\\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\\n}\\n.bk-root .bk-btn[disabled] {\\n cursor: not-allowed;\\n pointer-events: none;\\n opacity: 0.65;\\n box-shadow: none;\\n}\\n.bk-root .bk-btn-default {\\n color: #333;\\n background-color: #fff;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-default:hover {\\n background-color: #f5f5f5;\\n border-color: #b8b8b8;\\n}\\n.bk-root .bk-btn-default.bk-active {\\n background-color: #ebebeb;\\n border-color: #adadad;\\n}\\n.bk-root .bk-btn-default[disabled],\\n.bk-root .bk-btn-default[disabled]:hover,\\n.bk-root .bk-btn-default[disabled]:focus,\\n.bk-root .bk-btn-default[disabled]:active,\\n.bk-root .bk-btn-default[disabled].bk-active {\\n background-color: #e6e6e6;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-primary {\\n color: #fff;\\n background-color: #428bca;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-primary:hover {\\n background-color: #3681c1;\\n border-color: #2c699e;\\n}\\n.bk-root .bk-btn-primary.bk-active {\\n background-color: #3276b1;\\n border-color: #285e8e;\\n}\\n.bk-root .bk-btn-primary[disabled],\\n.bk-root .bk-btn-primary[disabled]:hover,\\n.bk-root .bk-btn-primary[disabled]:focus,\\n.bk-root .bk-btn-primary[disabled]:active,\\n.bk-root .bk-btn-primary[disabled].bk-active {\\n background-color: #506f89;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-success {\\n color: #fff;\\n background-color: #5cb85c;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-success:hover {\\n background-color: #4eb24e;\\n border-color: #409240;\\n}\\n.bk-root .bk-btn-success.bk-active {\\n background-color: #47a447;\\n border-color: #398439;\\n}\\n.bk-root .bk-btn-success[disabled],\\n.bk-root .bk-btn-success[disabled]:hover,\\n.bk-root .bk-btn-success[disabled]:focus,\\n.bk-root .bk-btn-success[disabled]:active,\\n.bk-root .bk-btn-success[disabled].bk-active {\\n background-color: #667b66;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-warning {\\n color: #fff;\\n background-color: #f0ad4e;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-warning:hover {\\n background-color: #eea43b;\\n border-color: #e89014;\\n}\\n.bk-root .bk-btn-warning.bk-active {\\n background-color: #ed9c28;\\n border-color: #d58512;\\n}\\n.bk-root .bk-btn-warning[disabled],\\n.bk-root .bk-btn-warning[disabled]:hover,\\n.bk-root .bk-btn-warning[disabled]:focus,\\n.bk-root .bk-btn-warning[disabled]:active,\\n.bk-root .bk-btn-warning[disabled].bk-active {\\n background-color: #c89143;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-danger {\\n color: #fff;\\n background-color: #d9534f;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-danger:hover {\\n background-color: #d5433e;\\n border-color: #bd2d29;\\n}\\n.bk-root .bk-btn-danger.bk-active {\\n background-color: #d2322d;\\n border-color: #ac2925;\\n}\\n.bk-root .bk-btn-danger[disabled],\\n.bk-root .bk-btn-danger[disabled]:hover,\\n.bk-root .bk-btn-danger[disabled]:focus,\\n.bk-root .bk-btn-danger[disabled]:active,\\n.bk-root .bk-btn-danger[disabled].bk-active {\\n background-color: #a55350;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-group {\\n height: 100%;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-btn-group > .bk-btn {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n}\\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\\n margin-left: -1px;\\n}\\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\\n border-bottom-right-radius: 0;\\n border-top-right-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\\n border-bottom-left-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\\n border-radius: 0;\\n}\\n.bk-root .bk-btn-group .bk-dropdown-toggle {\\n flex: 0 0 0;\\n -webkit-flex: 0 0 0;\\n padding: 6px 6px;\\n}\\n\"},\n", - " function _(n,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});r.default=\"\\n.bk-root .bk-menu-icon {\\n width: 28px;\\n height: 28px;\\n background-size: 60%;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-context-menu {\\n position: absolute;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n width: auto;\\n height: auto;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-context-menu.bk-horizontal {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-context-menu.bk-vertical {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-context-menu > .bk-divider {\\n cursor: default;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\\n width: 1px;\\n margin: 5px 0;\\n}\\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\\n height: 1px;\\n margin: 0 5px;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider) {\\n border: 1px solid transparent;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\\n border-color: #26aae1;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\\n background-color: #f9f9f9;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-bottom-left-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\\n border-top-right-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\\n border-bottom-left-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-menu {\\n position: absolute;\\n left: 0;\\n width: 100%;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-menu.bk-above {\\n bottom: 100%;\\n}\\n.bk-root .bk-menu.bk-below {\\n top: 100%;\\n}\\n.bk-root .bk-menu > .bk-divider {\\n height: 1px;\\n margin: 7.5px 0;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-menu > :not(.bk-divider) {\\n padding: 6px 12px;\\n}\\n.bk-root .bk-menu > :not(.bk-divider):hover,\\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\\n background-color: #e6e6e6;\\n}\\n.bk-root .bk-caret {\\n display: inline-block;\\n vertical-align: middle;\\n width: 0;\\n height: 0;\\n margin: 0 5px;\\n}\\n.bk-root .bk-caret.bk-down {\\n border-top: 4px solid;\\n}\\n.bk-root .bk-caret.bk-up {\\n border-bottom: 4px solid;\\n}\\n.bk-root .bk-caret.bk-down,\\n.bk-root .bk-caret.bk-up {\\n border-right: 4px solid transparent;\\n border-left: 4px solid transparent;\\n}\\n.bk-root .bk-caret.bk-left {\\n border-right: 4px solid;\\n}\\n.bk-root .bk-caret.bk-right {\\n border-left: 4px solid;\\n}\\n.bk-root .bk-caret.bk-left,\\n.bk-root .bk-caret.bk-right {\\n border-top: 4px solid transparent;\\n border-bottom: 4px solid transparent;\\n}\\n\"},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default='\\n.bk-root .bk-tabs-header {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n overflow: hidden;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group {\\n height: auto;\\n margin-right: 5px;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\\n flex-grow: 0;\\n -webkit-flex-grow: 0;\\n height: auto;\\n padding: 4px 4px;\\n}\\n.bk-root .bk-tabs-header .bk-headers-wrapper {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n overflow: hidden;\\n color: #666666;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\\n border-bottom: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\\n border-left: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\\n border-top: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\\n border-right: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-above,\\n.bk-root .bk-tabs-header.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers,\\n.bk-root .bk-tabs-header.bk-below .bk-headers {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-left,\\n.bk-root .bk-tabs-header.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers,\\n.bk-root .bk-tabs-header.bk-right .bk-headers {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header .bk-headers {\\n position: relative;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n}\\n.bk-root .bk-tabs-header .bk-tab {\\n padding: 4px 8px;\\n border: solid transparent;\\n white-space: nowrap;\\n cursor: pointer;\\n}\\n.bk-root .bk-tabs-header .bk-tab:hover {\\n background-color: #f2f2f2;\\n}\\n.bk-root .bk-tabs-header .bk-tab.bk-active {\\n color: #4d4d4d;\\n background-color: white;\\n border-color: #e6e6e6;\\n}\\n.bk-root .bk-tabs-header .bk-tab .bk-close {\\n margin-left: 10px;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-tab {\\n border-width: 3px 1px 0px 1px;\\n border-radius: 4px 4px 0 0;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-tab {\\n border-width: 1px 3px 1px 0px;\\n border-radius: 0 4px 4px 0;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-tab {\\n border-width: 0px 1px 3px 1px;\\n border-radius: 0 0 4px 4px;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-tab {\\n border-width: 1px 0px 1px 3px;\\n border-radius: 4px 0 0 4px;\\n}\\n.bk-root .bk-close {\\n display: inline-block;\\n width: 10px;\\n height: 10px;\\n vertical-align: middle;\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n.bk-root .bk-close:hover {\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n'},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__=\"WidgetBoxView\";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__=\"WidgetBox\",n.init_WidgetBox()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w(\"Asterisk\",v,n.AsteriskGL),o.CircleCross=w(\"CircleCross\",f,n.CircleCrossGL),o.CircleDot=w(\"CircleDot\",T),o.CircleY=w(\"CircleY\",z),o.CircleX=w(\"CircleX\",C,n.CircleXGL),o.Cross=w(\"Cross\",k,n.CrossGL),o.Dash=w(\"Dash\",Y),o.Diamond=w(\"Diamond\",m,n.DiamondGL),o.DiamondCross=w(\"DiamondCross\",h,n.DiamondCrossGL),o.DiamondDot=w(\"DiamondDot\",q),o.Dot=w(\"Dot\",P),o.Hex=w(\"Hex\",D,n.HexGL),o.HexDot=w(\"HexDot\",g),o.InvertedTriangle=w(\"InvertedTriangle\",S,n.InvertedTriangleGL),o.Plus=w(\"Plus\",G),o.Square=w(\"Square\",L,n.SquareGL),o.SquareCross=w(\"SquareCross\",p,n.SquareCrossGL),o.SquareDot=w(\"SquareDot\",x),o.SquarePin=w(\"SquarePin\",M),o.SquareX=w(\"SquareX\",I,n.SquareXGL),o.Triangle=w(\"Triangle\",y,n.TriangleGL),o.TriangleDot=w(\"TriangleDot\",X),o.TrianglePin=w(\"TrianglePin\",H),o.X=w(\"X\",A,n.XGL),o.Y=w(\"Y\",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},\n", - " function _(e,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if(\"h\"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;enew r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error(\"api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.\")}}i.GMapPlot=u,u.__name__=\"GMapPlot\",u.init_GMapPlot()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([[\"outline_\",o.Line],[\"background_\",o.Fill],[\"border_\",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,\"right\"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:\"\"})],title_location:[n.Location,\"above\"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,\"canvas\"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,\"standard\"]}),this.override({outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,\"reset\");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__=\"Plot\",f.init_Plot()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null},_=t=>\"tap\"==t||\"pan\"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,\"auto\"],active_inspect:[s.Any,\"auto\"],active_scroll:[s.Any,\"auto\"],active_tap:[s.Any,\"auto\"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];\"auto\"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__=\"Toolbar\",h.init_Toolbar()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__=\"InspectToolView\";class l extends s.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__=\"InspectTool\",l.init_InspectTool()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,i=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:\"auto\",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on(\"tap\",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on(\"press\",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,\"data:image\")?this.el.style.backgroundImage=\"url('\"+t+\"')\":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{right:e,top:o};case\"left\":return{left:i,top:o};case\"above\":return{left:e,top:s};case\"below\":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__=\"ButtonToolButtonView\";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__=\"ButtonToolView\";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__=\"ButtonTool\",b.init_ButtonTool()},\n", - " function _(t,e,n){\n", - " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", - " * http://hammerjs.github.io/\n", - " *\n", - " * Copyright (c) 2016 Jorik Tangelder;\n", - " * Licensed under the MIT license */\n", - " !function(t,n,i,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=n.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(null==t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),n=1;n-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;in[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit(\"hammer.input\",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl=\"mousedown\",this.evWin=\"mousemove mouseup\",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:\"mouse\",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:\"touch\",3:\"pen\",4:\"mouse\",5:\"kinect\"},B=\"pointerdown\",$=\"pointermove pointerup pointercancel\";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B=\"MSPointerDown\",$=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace(\"ms\",\"\"),r=G[i],s=Z[t.pointerType]||t.pointerType,o=\"touch\"==s,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget=\"touchstart\",this.evWin=\"touchstart touchmove touchend touchcancel\",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),\"identifier\",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:\"touch\",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget=\"touchstart touchmove touchend touchcancel\",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[\"auto\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distancee.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[\"manipulation\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__=\"ToolView\";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case\"width\":return t+\" (x-axis)\";case\"height\":return t+\" (y-axis)\";case\"both\":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;\"width\"==a||\"both\"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return\"height\"==a||\"both\"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}i.Tool=_,_.__name__=\"Tool\",_.init_Tool()},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_toolbar=\"bk-toolbar\",t.bk_toolbar_hidden=\"bk-toolbar-hidden\",t.bk_toolbar_button=\"bk-toolbar-button\",t.bk_button_bar=\"bk-button-bar\",t.bk_toolbar_button_custom_action=\"bk-toolbar-button-custom-action\"},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-toolbar-hidden {\\n visibility: hidden;\\n opacity: 0;\\n transition: visibility 0.3s linear, opacity 0.3s linear;\\n}\\n.bk-root .bk-toolbar,\\n.bk-root .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-toolbar .bk-logo {\\n flex-shrink: 0;\\n -webkit-flex-shrink: 0;\\n}\\n.bk-root .bk-toolbar.bk-above,\\n.bk-root .bk-toolbar.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n justify-content: flex-end;\\n -webkit-justify-content: flex-end;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-logo,\\n.bk-root .bk-toolbar.bk-below .bk-logo {\\n order: 1;\\n -webkit-order: 1;\\n margin-left: 5px;\\n margin-right: 0px;\\n}\\n.bk-root .bk-toolbar.bk-left,\\n.bk-root .bk-toolbar.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n justify-content: flex-start;\\n -webkit-justify-content: flex-start;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-logo,\\n.bk-root .bk-toolbar.bk-right .bk-logo {\\n order: 0;\\n -webkit-order: 0;\\n margin-bottom: 5px;\\n margin-top: 0px;\\n}\\n.bk-root .bk-toolbar-button {\\n width: 30px;\\n height: 30px;\\n cursor: pointer;\\n background-size: 60% 60%;\\n background-origin: border-box;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-toolbar-button:hover {\\n background-color: rgba(192, 192, 192, 0.15);\\n}\\n.bk-root .bk-toolbar-button:focus {\\n outline: none;\\n}\\n.bk-root .bk-toolbar-button::-moz-focus-inner {\\n border: 0;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\\n border-bottom: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\\n border-bottom-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\\n border-top: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\\n border-top-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\\n border-left: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\\n border-left-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\\n border-right: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\\n border-right-color: #26aae1;\\n}\\n.bk-root .bk-button-bar + .bk-button-bar:before {\\n content: \" \";\\n display: inline-block;\\n background-color: lightgray;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\\n height: 10px;\\n width: 1px;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\\n height: 1px;\\n width: 10px;\\n}\\n'},\n", - " function _(A,g,C){Object.defineProperty(C,\"__esModule\",{value:!0});C.default='\\n.bk-root .bk-tool-icon-copy-to-clipboard {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-replace-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-append-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-intersect-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-subtract-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-clear-selection {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-box-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-box-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-zoom-in {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-zoom-out {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-help {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-hover {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-crosshair {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-lasso-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-pan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-xpan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-ypan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-range {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-polygon-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-redo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-reset {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-save {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-tap-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-undo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-wheel-pan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgswOmEYWAAABddJREFUWMO9l09oXNcVxn/n3vc0fzRjj2RHyIZ6ERuy6CarxJtS0pQSCsXNpqGFWK5tTHAwyqIGN7VdEts1LV04BEoxdlJnUbfNogtDCYWQRZOSxtAUCoFiJY0pWJVUjeTKM9LMe+9+Xcyb8ZMychuofeHCffeee7/vnXvOuefYlV/+mv932//tb91z/Y2rvxmMHQ+4FcEfOIGN4A+UwDDwoQScc7vM7AIwB8yZ2QXn3K77Ab6OgJnVgeOSbkqaBiaACUnTkm4Cx3OZzwf+qzcRQup1zNZ9RwDe+0YI4YKZTUn6zCGSMLOfAF/03r+QZdnyfwO+ePEiI6N1nPMgMDMkETLRbd2mXG8gCbd9YiIKIUxLKoLfBN7I+80+CUlTIYTp7RMT0b3Af37p8kh5y9gZcy4Fzt+5szqSaxkzUR7dwtrKMmaGW242d0t6vrD/He/90865o865o977p4F3Ctp4frnZ3L0Z+OryUrVSrZ0z8ZxhHjhcq1XPrS43q/0flDlK9XpPA2ma7gMeyvfPx3H8TJZlH4YQWiGEVpZlH8Zx/Awwn8s8lKbpvmq1ahvB641SXNk6dhLskNA2MIBtwKHK1vGTW8bKMRbAMgyPqWeETxUM8VSSJAv52JmZA0iSZMHMThWwnipXKp8hsLLcSaIR92oU8xjSayCQXotiHotG3Ku3m+0EOQwPQCDggMf7BzQajSs5eAk4B5zLx4O1vD2eJMmAQKliscgASJMw21pansFs1swQ/DNLmUmTMNuXX+taXHTDaj5OW612R1JZ0nFJJ/J+XFJ5aWmpA6S5bHV8fHsPHFU6q3pJCjtFxtrKMuXRLUUXXxdrRLazFOtUolZlsGhmACsgnHPTwJnCnjP5HMBKLotzxsTE9rgDL0t6LoriKsDIaB31ZEK+JxQJRHFUBR2NqLw8OTkZR0OC0ntm9k1JWU7OA4vD/mZ+YfElsANmNEKi75vztzB5M8uAr+bx48me88g757PQ1U5zNg52YH7hX8l6f+4Fi3c3BqHNmkI4YQOV2MGCNu9qHPYCewfzbrC+XSGcWEcgTRKA3wFfyzdDz5d+D3x9CIcfA4eBbQS9LscskgfLnHNPAnslvS/pbZDHLLPADpx9N9fqpSIBH8cxWZY9m6bpb4Ev5fN/iKLo2TRNgdx/eo8Wk5O7Ts/N/SOSdMjHdj4kmgkIEJLJzPZKetvMTkIvFLsR25Ml2gfuF5M7vnA66sdooJYkCSGERe/9VAjhzRxoKk3Tvg3U8nulVqvx8cyNpER2umM+SdOkbc5B8JhpqBdIgTRR24h+lpKen731aRIN7thscH9Zlv0d2F8YD2TIX7F2uw3A7ZWV1a0TYz9ca8cJZHRbuRuaDfUCw9/qJHamPOKToAwHtHN6lMvlSkH2o7wDMDo6WuGuQbbn5+YAKNcb3J5fSvrhtTY+vsOPuD1IOyRhMOkj9kSx29HfXB5RUnS964NT2+3vbGbxG9auO2cDNuV6A8NTb5TitBuOpQkfYD2vwOxgmvBB2g3Hto5X42EJyVsFlztbKpXGNgqVSqUxSWcLU2+tdToa9hasLjfPYlwGa+bTi8Dl1dvNsyvNtQQL9MO2w+HM7BqwlAtPdrvdq9773WAVsIr3fne3270KTOYyS2Z2bbXdHhogKmPj7YWF+VOSXs/v/9KdO+0fVBrjbRkgB/KIDBnYu9f/7D+ZmfmRxPd6qwB8YmZXcq1MAQ/nJhTM+OnDe/a8+PGNG9lm19V/D1Qw7HXZlcRa69+U6w38l5/4ipxzf5X0CPBILjcGPJH34pVcc8692FxcXLlXRnTwwH7+9P4f8aWe3fY59LIqo1NMyQBCCHNmdgx4BegUWefjDvCKmR0LIcz9L8nokSNH+PRvH4HC3YQ098pSbevg24qlmZmNmtmjkg4D3+j/tZldkvQXSa3PW5ptlpL3ZaIN99OS9F7+IgKUgSyEkNyv2nHT7DZX0dr9rpjua2l2r4rogRAYVqZvnPsPqVnpEXjEaB4AAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-wheel-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-box-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-freehand-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-point-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-line-edit {\\n background-image: url(\"data:image/png;base64,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\");\\n}\\n'},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+\"px\":\"\",this.el.style.top=null!=t.top?t.top-i.top+\"px\":\"\",this.el.style.right=null!=t.right?i.right-t.right+\"px\":\"\",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+\"px\":\"\"}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:\"vertical\";s.classes(this.el).add(\"bk-context-menu\",\"bk-\"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:[\"bk-menu-icon\",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?\"bk-active\":null,title:t.tooltip},i,t.label)}}n.addEventListener(\"click\",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__=\"ContextMenu\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__=\"OnOffButtonView\"},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__=\"ToolbarViewModel\",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[...super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t=\"grey\"===this.model.logo?f.bk_grey:null,o=l.a({href:\"https://bokeh.org/\",target:\"_blank\",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__=\"ToolbarBaseView\";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,\"normal\"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,\"right\"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,s.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__=\"ToolbarBase\",B.init_ToolbarBase()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__=\"GestureToolView\";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__=\"GestureTool\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__=\"ActionToolButtonView\";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__=\"ActionToolView\";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,\"do\")}}n.ActionTool=l,l.__name__=\"ActionTool\"},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__=\"HelpToolView\";class r extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,\"Click the question mark to learn more about Bokeh plot tools.\"],redirect:[s.String,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}),this.register_alias(\"help\",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__=\"HelpTool\",r.init_HelpTool()},\n", - " function _(o,_,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tool_icon_box_select=\"bk-tool-icon-box-select\",l.bk_tool_icon_box_zoom=\"bk-tool-icon-box-zoom\",l.bk_tool_icon_zoom_in=\"bk-tool-icon-zoom-in\",l.bk_tool_icon_zoom_out=\"bk-tool-icon-zoom-out\",l.bk_tool_icon_help=\"bk-tool-icon-help\",l.bk_tool_icon_hover=\"bk-tool-icon-hover\",l.bk_tool_icon_crosshair=\"bk-tool-icon-crosshair\",l.bk_tool_icon_lasso_select=\"bk-tool-icon-lasso-select\",l.bk_tool_icon_pan=\"bk-tool-icon-pan\",l.bk_tool_icon_xpan=\"bk-tool-icon-xpan\",l.bk_tool_icon_ypan=\"bk-tool-icon-ypan\",l.bk_tool_icon_range=\"bk-tool-icon-range\",l.bk_tool_icon_polygon_select=\"bk-tool-icon-polygon-select\",l.bk_tool_icon_redo=\"bk-tool-icon-redo\",l.bk_tool_icon_reset=\"bk-tool-icon-reset\",l.bk_tool_icon_save=\"bk-tool-icon-save\",l.bk_tool_icon_tap_select=\"bk-tool-icon-tap-select\",l.bk_tool_icon_undo=\"bk-tool-icon-undo\",l.bk_tool_icon_wheel_pan=\"bk-tool-icon-wheel-pan\",l.bk_tool_icon_wheel_zoom=\"bk-tool-icon-wheel-zoom\",l.bk_tool_icon_box_edit=\"bk-tool-icon-box-edit\",l.bk_tool_icon_freehand_draw=\"bk-tool-icon-freehand-draw\",l.bk_tool_icon_poly_draw=\"bk-tool-icon-poly-draw\",l.bk_tool_icon_point_draw=\"bk-tool-icon-point-draw\",l.bk_tool_icon_poly_edit=\"bk-tool-icon-poly-edit\",l.bk_tool_icon_line_edit=\"bk-tool-icon-line-edit\"},\n", - " function _(o,l,b){Object.defineProperty(b,\"__esModule\",{value:!0}),b.bk_logo=\"bk-logo\",b.bk_logo_notebook=\"bk-logo-notebook\",b.bk_logo_small=\"bk-logo-small\",b.bk_grey=\"bk-grey\"},\n", - " function _(l,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n.bk-root .bk-logo {\\n margin: 5px;\\n position: relative;\\n display: block;\\n background-repeat: no-repeat;\\n}\\n.bk-root .bk-logo.bk-grey {\\n filter: url(\\\"data:image/svg+xml;utf8,#grayscale\\\");\\n /* Firefox 10+, Firefox on Android */\\n filter: gray;\\n /* IE6-9 */\\n -webkit-filter: grayscale(100%);\\n /* Chrome 19+, Safari 6+, Safari 6+ iOS */\\n}\\n.bk-root .bk-logo-small {\\n width: 20px;\\n height: 20px;\\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\\n}\\n.bk-root .bk-logo-notebook {\\n display: inline-block;\\n vertical-align: middle;\\n margin-right: 5px;\\n}\\n\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&\"function\"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);nt)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){\"standard\"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,\"state_changed\"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:\"fixed\",width:t}:{width_policy:\"fit\"}),null!=e?{height_policy:\"fixed\",height:e}:{height_policy:\"fit\"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case\"above\":return i;case\"below\":return s;case\"left\":return n;case\"right\":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i=\"above\"==t||\"below\"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:\"min\"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(a=new M.Column(e),a.set_sizing({width_policy:\"min\",height_policy:\"max\"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p(\"above\",i)),g.children=p(\"below\",s),m.children=w.reversed(p(\"left\",n)),O.children=p(\"right\",a),b.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),g.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),m.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t=\"default\"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&\"auto\"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(...t,...e,...i,...s,...n,...a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(...t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug(\"initial ranges set\")):g.logger.warn(\"could not set initial ranges\")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace(\"PlotView.paint() for \"+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if(\"overlay\"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,\"image\",s,!0),this._paint_levels(n.ctx,\"underlay\",s,!0),this._paint_levels(n.ctx,\"glyph\",s,!0),this._paint_levels(n.ctx,\"guide\",s,!1),this._paint_levels(n.ctx,\"annotation\",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,\"overlay\",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(...i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i=\"png\"==t?\"canvas\":\"svg\",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,[\"children\"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>\"bbox\"in t);return Object.assign(Object.assign({},i),{children:[...e,...n]})}}i.PlotView=k,k.__name__=\"PlotView\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__=\"BokehEvent\";class o extends a{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__=\"ModelEvent\";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__=\"DocumentReady\",s.DocumentReady=r=n([_(\"document_ready\")],r);let c=class extends o{};s.ButtonClick=c,c.__name__=\"ButtonClick\",s.ButtonClick=c=n([_(\"button_click\")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__=\"MenuItemClick\",s.MenuItemClick=l=n([_(\"menu_item_click\")],l);class i extends o{}s.UIEvent=i,i.__name__=\"UIEvent\";let u=class extends i{};s.LODStart=u,u.__name__=\"LODStart\",s.LODStart=u=n([_(\"lodstart\")],u);let d=class extends i{};s.LODEnd=d,d.__name__=\"LODEnd\",s.LODEnd=d=n([_(\"lodend\")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__=\"SelectionGeometry\",s.SelectionGeometry=h=n([_(\"selectiongeometry\")],h);let m=class extends i{};s.Reset=m,m.__name__=\"Reset\",s.Reset=m=n([_(\"reset\")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__=\"PointEvent\";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__=\"Pan\",s.Pan=p=n([_(\"pan\")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__=\"Pinch\",s.Pinch=j=n([_(\"pinch\")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__=\"Rotate\",s.Rotate=y=n([_(\"rotate\")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__=\"MouseWheel\",s.MouseWheel=P=n([_(\"wheel\")],P);let v=class extends x{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=n([_(\"mousemove\")],v);let O=class extends x{};s.MouseEnter=O,O.__name__=\"MouseEnter\",s.MouseEnter=O=n([_(\"mouseenter\")],O);let b=class extends x{};s.MouseLeave=b,b.__name__=\"MouseLeave\",s.MouseLeave=b=n([_(\"mouseleave\")],b);let g=class extends x{};s.Tap=g,g.__name__=\"Tap\",s.Tap=g=n([_(\"tap\")],g);let E=class extends x{};s.DoubleTap=E,E.__name__=\"DoubleTap\",s.DoubleTap=E=n([_(\"doubletap\")],E);let M=class extends x{};s.Press=M,M.__name__=\"Press\",s.Press=M=n([_(\"press\")],M);let R=class extends x{};s.PressUp=R,R.__name__=\"PressUp\",s.PressUp=R=n([_(\"pressup\")],R);let f=class extends x{};s.PanStart=f,f.__name__=\"PanStart\",s.PanStart=f=n([_(\"panstart\")],f);let S=class extends x{};s.PanEnd=S,S.__name__=\"PanEnd\",s.PanEnd=S=n([_(\"panend\")],S);let D=class extends x{};s.PinchStart=D,D.__name__=\"PinchStart\",s.PinchStart=D=n([_(\"pinchstart\")],D);let k=class extends x{};s.PinchEnd=k,k.__name__=\"PinchEnd\",s.PinchEnd=k=n([_(\"pinchend\")],k);let L=class extends x{};s.RotateStart=L,L.__name__=\"RotateStart\",s.RotateStart=L=n([_(\"rotatestart\")],L);let C=class extends x{};s.RotateEnd=C,C.__name__=\"RotateEnd\",s.RotateEnd=C=n([_(\"rotateend\")],C)},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,\"pan:start\"),this.pan=new r.Signal(this,\"pan\"),this.pan_end=new r.Signal(this,\"pan:end\"),this.pinch_start=new r.Signal(this,\"pinch:start\"),this.pinch=new r.Signal(this,\"pinch\"),this.pinch_end=new r.Signal(this,\"pinch:end\"),this.rotate_start=new r.Signal(this,\"rotate:start\"),this.rotate=new r.Signal(this,\"rotate\"),this.rotate_end=new r.Signal(this,\"rotate:end\"),this.tap=new r.Signal(this,\"tap\"),this.doubletap=new r.Signal(this,\"doubletap\"),this.press=new r.Signal(this,\"press\"),this.pressup=new r.Signal(this,\"pressup\"),this.move_enter=new r.Signal(this,\"move:enter\"),this.move=new r.Signal(this,\"move\"),this.move_exit=new r.Signal(this,\"move:exit\"),this.scroll=new r.Signal(this,\"scroll\"),this.keydown=new r.Signal(this,\"keydown\"),this.keyup=new r.Signal(this,\"keyup\"),this.hammer=new i.default(this.hit_area,{touchAction:\"auto\",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",t=>this._mouse_move(t)),this.hit_area.addEventListener(\"mouseenter\",t=>this._mouse_enter(t)),this.hit_area.addEventListener(\"mouseleave\",t=>this._mouse_exit(t)),this.hit_area.addEventListener(\"contextmenu\",t=>this._context_menu(t)),this.hit_area.addEventListener(\"wheel\",t=>this._mouse_wheel(t)),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",t=>this._doubletap(t)),this.hammer.on(\"tap\",t=>this._tap(t)),this.hammer.on(\"press\",t=>this._press(t)),this.hammer.on(\"pressup\",t=>this._pressup(t)),this.hammer.get(\"pan\").set({direction:i.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",t=>this._pan_start(t)),this.hammer.on(\"pan\",t=>this._pan(t)),this.hammer.on(\"panend\",t=>this._pan_end(t)),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",t=>this._pinch_start(t)),this.hammer.on(\"pinch\",t=>this._pinch(t)),this.hammer.on(\"pinchend\",t=>this._pinch_end(t)),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",t=>this._rotate_start(t)),this.hammer.on(\"rotate\",t=>this._rotate(t)),this.hammer.on(\"rotateend\",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(\"unsupported event_type: \"+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(a.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if((\"annotation\"==s||\"overlay\"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(\":\")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case\"move\":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _=\"default\";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_=\"crosshair\")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case\"tap\":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case\"scroll\":{const i=n[p.is_mobile?\"pinch\":\"scroll\"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case\"pan\":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case\"wheel\":return new _.MouseWheel(e,s,n,i,t.delta);case\"mousemove\":return new _.MouseMove(e,s,n,i);case\"mouseenter\":return new _.MouseEnter(e,s,n,i);case\"mouseleave\":return new _.MouseLeave(e,s,n,i);case\"tap\":return new _.Tap(e,s,n,i);case\"doubletap\":return new _.DoubleTap(e,s,n,i);case\"press\":return new _.Press(e,s,n,i);case\"pressup\":return new _.PressUp(e,s,n,i);case\"pan\":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case\"panstart\":return new _.PanStart(e,s,n,i);case\"panend\":return new _.PanEnd(e,s,n,i);case\"pinch\":return new _.Pinch(e,s,n,i,t.scale);case\"pinchstart\":return new _.PinchStart(e,s,n,i);case\"pinchend\":return new _.PinchEnd(e,s,n,i);case\"rotate\":return new _.Rotate(e,s,n,i,t.rotation);case\"rotatestart\":return new _.RotateStart(e,s,n,i);case\"rotateend\":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__=\"UIEvents\"},\n", - " function _(e,t,n){\n", - " /*!\n", - " * jQuery Mousewheel 3.1.13\n", - " *\n", - " * Copyright jQuery Foundation and other contributors\n", - " * Released under the MIT license\n", - " * http://jquery.org/license\n", - " */\n", - " function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,\"__esModule\",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},\n", - " function _(n,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=(\"undefined\"!=typeof window?window.requestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.webkitRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.mozRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__=\"BorderLayout\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h=\"left\",s=\"center\",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"alphabetic\",vertical:\"middle\"},below:{justified:\"bottom\",parallel:\"hanging\",normal:\"middle\",horizontal:\"hanging\",vertical:\"middle\"},left:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"},right:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:\"right\",horizontal:\"right\",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:\"right\",below:h,left:\"right\",right:h},m={above:h,below:\"right\",left:\"right\",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case\"above\":this._dim=0,this._normals=[0,-1];break;case\"below\":this._dim=0,this._normals=[0,1];break;case\"left\":this._dim=1,this._normals=[-1,0];break;case\"right\":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:\"max\",height_policy:\"fixed\"}):this.set_sizing({width_policy:\"fixed\",height_policy:\"max\"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l=\"middle\",a=c[e]):(l=\"middle\",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__=\"SidePanel\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},\"gmaps_ready\");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,\"undefined\"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement(\"script\");e.type=\"text/javascript\",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,\"bounds_changed\",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,\"tilesloaded\",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center(\"lat\")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center(\"lng\")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+\"px\",this.map_el.style.left=t+\"px\",this.map_el.style.width=i+\"px\",this.map_el.style.height=o+\"px\"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__=\"GMapPlotView\"},\n", - " function _(a,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},\n", - " function _(a,e,l){Object.defineProperty(l,\"__esModule\",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__=\"ServerSentDataSource\"},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case\"replace\":this.data=s;break;case\"append\":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,\"replace\"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__=\"WebDataSource\",n.init_WebDataSource()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,\"application/json\"],http_headers:[o.Any,{}],method:[o.HTTPMethod,\"POST\"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",()=>this.do_load(s,t,e)),s.addEventListener(\"error\",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__=\"AjaxDataSource\",d.init_AjaxDataSource()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const a=n.reduce(r);for(let e=0;ethis.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__=\"MercatorTileSource\",l.init_MercatorTileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,\"\"],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,\"\"],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=a,a.__name__=\"TileSource\",a.init_TileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace(\"{Q}\",c)}}r.QUADKEYTileSource=s,s.__name__=\"QUADKEYTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:\"absolute\",right:s+\"px\",bottom:_+\"px\",\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__=\"TileRendererView\";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__=\"TileRenderer\",b.init_TileRenderer()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",_.toString())}}r.WMTSTileSource=s,s.__name__=\"WMTSTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.bk_tile_attribution=\"bk-tile-attribution\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default=\"\\n.bk-root .bk-tile-attribution a {\\n color: black;\\n}\\n\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=c,c.__name__=\"TMSTileSource\"},\n", - " function _(e,r,a){Object.defineProperty(a,\"__esModule\",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){return r=>{const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__=\"CanvasTexture\",a.init_CanvasTexture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,\"repeat\"]})}onload(e){e()}}i.Texture=_,_.__name__=\"Texture\",_.init_Texture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__=\"ImageURLTexture\",o.init_ImageURLTexture()},\n", - " function _(o,l,T){Object.defineProperty(T,\"__esModule\",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__=\"CustomActionButtonView\";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__=\"CustomActionView\";class u extends s.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,\"Perform a Custom Action\"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__=\"CustomAction\",u.init_CustomAction()},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__=\"RedoToolView\";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name=\"Redo\",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias(\"redo\",()=>new _)}}t.RedoTool=_,_.__name__=\"RedoTool\",_.init_RedoTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__=\"ResetToolView\";class l extends s.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias(\"reset\",()=>new l)}}o.ResetTool=l,l.__name__=\"ResetTool\",l.init_ResetTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=n,n.__name__=\"SaveToolView\";class s extends a.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias(\"save\",()=>new s)}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=s,s.__name__=\"SaveTool\",s.init_SaveTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__=\"UndoToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias(\"undo\",()=>new _)}}e.UndoTool=_,_.__name__=\"UndoTool\",_.init_UndoTool()},\n", - " function _(o,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias(\"zoom_in\",()=>new t({dimensions:\"both\"})),this.register_alias(\"xzoom_in\",()=>new t({dimensions:\"width\"})),this.register_alias(\"yzoom_in\",()=>new t({dimensions:\"height\"}))}}e.ZoomInTool=t,t.__name__=\"ZoomInTool\",t.init_ZoomInTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e=\"width\"==t||\"both\"==t,i=\"height\"==t||\"both\"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state(\"zoom_out\",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__=\"ZoomBaseToolView\";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__=\"ZoomBaseTool\",a.init_ZoomBaseTool()},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},\n", - " function _(o,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias(\"zoom_out\",()=>new n({dimensions:\"both\"})),this.register_alias(\"xzoom_out\",()=>new n({dimensions:\"width\"})),this.register_alias(\"yzoom_out\",()=>new n({dimensions:\"height\"}))}}i.ZoomOutTool=n,n.__name__=\"ZoomOutTool\",n.init_ZoomOutTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?\"append\":!t&&o?\"intersect\":t&&o?\"subtract\":void r.unreachable():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;ethis._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__=\"PolyDrawToolView\";class l extends n.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.bk_tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__=\"PolyDrawTool\",l.init_PolyDrawTool()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,\"replace\",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__=\"PolyToolView\";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__=\"PolyTool\",l.init_PolyTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,\"replace\",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__=\"PolyEditToolView\";class l extends _.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=d.bk_tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__=\"PolyEditTool\",l.init_PolyEditTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const _={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__=\"BoxSelectToolView\";const r=()=>new l.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=n.bk_tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,\"both\"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_select\",()=>new h),this.register_alias(\"xbox_select\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_select\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__=\"BoxSelectTool\",h.init_BoxSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case\"point\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case\"poly\":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__=\"SelectToolView\";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,\"clear\")}static init_SelectTool(){this.define({renderers:[l.Any,\"auto\"],names:[l.Array,[]],mode:[l.Any,\"replace\"]})}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__=\"SelectTool\",u.init_SelectTool()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u=\"auto\"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew n.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=a.bk_tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,\"both\"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_zoom\",()=>new h({dimensions:\"both\"})),this.register_alias(\"xbox_zoom\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_zoom\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__=\"BoxZoomTool\",h.init_BoxZoomTool()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"lasso_select\",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:\"poly\",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__=\"LassoSelectToolView\";class h extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Lasso Select\",this.icon=c.bk_tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"lasso_select\",()=>new h)}}t.LassoSelectTool=h,h.__name__=\"LassoSelectTool\",h.init_LassoSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:\"poly\",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__=\"PolySelectToolView\",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=n.bk_tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"poly_select\",()=>new y)}}s.PolySelectTool=y,y.__name__=\"PolySelectTool\",y.init_PolySelectTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,\"replace\",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__=\"LineEditToolView\";class o extends n.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=_.bk_tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__=\"LineEditTool\",o.init_LineEditTool()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__=\"LineToolView\";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__=\"LineTool\",r.init_LineTool()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(st.end)&&(this.v_axis_only=!0),(ei.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state(\"pan\",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__=\"PanToolView\";class l extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,\"both\"]}),this.register_alias(\"pan\",()=>new l({dimensions:\"both\"})),this.register_alias(\"xpan\",()=>new l({dimensions:\"width\"})),this.register_alias(\"ypan\",()=>new l({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(\"Pan\",this.dimensions)}get icon(){switch(this.dimensions){case\"both\":return a.bk_tool_icon_pan;case\"width\":return a.bk_tool_icon_xpan;case\"height\":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__=\"PanTool\",l.init_PanTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const m=()=>new n.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=o.bk_tool_icon_range,this.event_type=\"pan\",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__=\"RangeTool\",v.init_RangeTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__=\"TapToolView\";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=n.bk_tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,\"select\"],callback:[c.Any]}),this.register_alias(\"click\",()=>new _({behavior:\"inspect\"})),this.register_alias(\"tap\",()=>new _)}}s.TapTool=_,_.__name__=\"TapTool\",_.init_TapTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case\"width\":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error(\"this shouldn't have happened\")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state(\"wheel_pan\",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__=\"WheelPanToolView\";class h extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=a.bk_tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,\"width\"]}),this.internal({speed:[n.Number,.001]}),this.register_alias(\"xwheel_pan\",()=>new h({dimension:\"width\"})),this.register_alias(\"ywheel_pan\",()=>new h({dimension:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__=\"WheelPanTool\",h.init_WheelPanTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=(\"width\"==_||\"both\"==_)&&t.startnew m({dimensions:\"both\"})),this.register_alias(\"xwheel_zoom\",()=>new m({dimensions:\"width\"})),this.register_alias(\"ywheel_zoom\",()=>new m({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__=\"WheelZoomTool\",m.init_WheelZoomTool()},\n", - " function _(i,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;\"width\"!=e&&\"both\"!=e||(this.model.spans.width.location=s),\"height\"!=e&&\"both\"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__=\"CrosshairToolView\";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,\"both\"],line_color:[l.Color,\"black\"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias(\"crosshair\",()=>new _)}get tooltip(){return this._get_dim_tooltip(\"Crosshair\",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:\"width\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:\"height\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__=\"CrosshairTool\",_.init_CrosshairTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,\"\"]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(...a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,t,s)}}s.CustomJSHover=u,u.__name__=\"CustomJSHover\",u.init_CustomJSHover()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if(\"span\"==t.type)\"h\"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if(\"mouse\"==this.model.mode)s={type:\"point\",sx:e,sy:t};else{s={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if(\"ignore\"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case\"interp\":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case\"prev\":[[o,n],m]=g(y.sx,y.sy,s);break;case\"next\":[[o,n],m]=g(y.sx,y.sy,s+1);break;case\"nearest\":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if(\"snap_to_data\"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point(\"center\",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case\"interp\":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case\"prev\":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case\"next\":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case\"nearest\":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error(\"should't have happened\")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[s]of e){const e=d.div({style:{display:\"table-row\"}});t.appendChild(e);const o=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_label},0!=s.length?s+\": \":\"\");e.appendChild(o);const n=d.span();n.dataset.value=\"\";const i=d.span({class:v.bk_tooltip_color_block},\" \");i.dataset.swatch=\"\",d.undisplay(i);const r=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll(\"[data-value]\"),l=i.querySelectorAll(\"[data-swatch]\"),c=/\\$color(\\[.*\\])?:(\\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e=\"\",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+\" unknown\";continue}const a=e.indexOf(\"hex\")>=0,_=e.indexOf(\"swatch\")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent=\"(null)\";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace(\"$~\",\"$data_\"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__=\"HoverToolView\";class k extends n.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[p.Any,{}],renderers:[p.Any,\"auto\"],names:[p.Array,[]],mode:[p.HoverMode,\"mouse\"],muted_policy:[p.MutedPolicy,\"show\"],point_policy:[p.PointPolicy,\"snap_to_data\"],line_policy:[p.LinePolicy,\"nearest\"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,\"center\"],attachment:[p.TooltipAttachment,\"horizontal\"],callback:[p.Any]}),this.register_alias(\"hover\",()=>new k)}}s.HoverTool=k,k.__name__=\"HoverTool\",k.init_HoverTool()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__=\"ToolProxy\",r.init_ToolProxy()},\n", - " function _(o,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(...i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if(\"multi\"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__=\"ProxyToolbar\",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}}s.ToolbarBoxView=_,_.__name__=\"ToolbarBoxView\";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,\"right\"]})}}s.ToolbarBox=p,p.__name__=\"ToolbarBox\",p.init_ToolbarBox()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[...u.values()]}},\n", - " function _(e,o,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(`Error rendering Bokeh model: could not find #${e} HTML tag`);if(!document.body.contains(o))throw new Error(`Error rendering Bokeh model: element #${e} must be under `);if(\"SCRIPT\"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},\n", - " function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e=\"ws:\";return\"https:\"==window.location.protocol&&(e=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),e+\"//\"+t.host+n+\"/ws\"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return c.add_document_standalone(d.document,t,a,i)}},\n", - " function _(e,s,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let l=0;function _(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(\".\")[0],t.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=\"\"+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+=\"?\"+this.args_string),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error(\"websocket creation failed to url: \"+this.url),t.logger.error(\" - \"+e),e}}close(){this.closed_permanently||(t.logger.debug(\"Permanently closing websocket connection \"+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,\"close method called on ClientConnection \"+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)},e)}send(e){if(null==this.socket)throw new Error(\"not connected so cannot send \"+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if(\"ERROR\"===s.msgtype())throw new Error(\"Error reply \"+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(`Sending ${i.events.length} changes from model construction back to server`);const e=r.Message.create(\"PATCH-DOC\",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error(\"Failed to repull session \"+e),s(e)}}_on_open(e,s){t.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach(e=>e.reject(\"Disconnected\")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){t.logger.debug(\"Websocket error on socket \"+this._number);const s=\"Could not open websocket\";t.logger.error(\"Failed to connect to Bokeh server: \"+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error(\"Closing connection: \"+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(\"too many buffers received, expecting \"+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=n,n.__name__=\"Message\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__=\"Receiver\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):c.logger.debug(\"Doing nothing with message \"+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create(\"PATCH-DOC\",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace(\"Unhandled OK reply to \"+e.reqid())}_handle_error(e){c.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=i,i.__name__=\"ClientSession\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e=\"function\"==typeof __values?__values(e):e[Symbol.iterator](),o={},n(\"next\"),n(\"throw\"),n(\"return\"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info(\"Registering Jupyter comms for target \"+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info(\"Registering Jupyter comms for target \"+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){l.logger.info(\"Registering Google Colab comms for target \"+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info(\"Registering Google Colab comms for target \"+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n/* notebook specific tweaks so no black outline and matching padding\\n/* can't be wrapped inside bk-root. here are the offending jupyter lines:\\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 */\\n.rendered_html .bk-root .bk-tooltip table,\\n.rendered_html .bk-root .bk-tooltip tr,\\n.rendered_html .bk-root .bk-tooltip th,\\n.rendered_html .bk-root .bk-tooltip td {\\n border: none;\\n padding: 1px;\\n}\\n\"},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},\n", - " function _(e,t,n){function s(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,\"__esModule\",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",()=>r.removeChild(t));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName(\"body\")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},\n", - " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/callback\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/eq\":25,\"core/util/data_structures\":26,\"core/settings\":27,\"core/property_mixins\":28,\"core/util/string\":29,\"core/util/ndarray\":30,\"core/util/serialization\":31,\"core/util/compat\":32,\"core/util/pretty\":33,\"models/index\":34,\"models/annotations/index\":35,\"models/annotations/annotation\":36,\"core/util/projections\":37,\"models/renderers/renderer\":70,\"core/view\":71,\"core/dom\":72,\"styles/root.css\":73,\"core/visuals\":74,\"core/util/svg\":75,\"core/util/affine\":76,\"models/canvas/canvas\":77,\"core/dom_view\":78,\"core/util/bbox\":79,\"core/util/canvas\":80,\"model\":81,\"models/canvas/coordinates\":82,\"models/annotations/arrow\":83,\"models/annotations/arrow_head\":84,\"models/sources/column_data_source\":85,\"models/sources/columnar_data_source\":86,\"models/sources/data_source\":87,\"models/selections/selection\":88,\"core/selection_manager\":89,\"models/renderers/glyph_renderer\":90,\"models/renderers/data_renderer\":91,\"models/glyphs/line\":92,\"models/glyphs/xy_glyph\":93,\"models/glyphs/glyph\":94,\"core/util/spatial\":95,\"models/ranges/factor_range\":98,\"models/ranges/range\":99,\"models/glyphs/utils\":100,\"core/hittest\":101,\"models/glyphs/webgl/line\":102,\"models/glyphs/webgl/utils/index\":103,\"models/glyphs/webgl/utils/program\":104,\"models/glyphs/webgl/utils/buffer\":105,\"models/glyphs/webgl/utils/texture\":106,\"models/glyphs/webgl/base\":107,\"models/glyphs/webgl/line.vert\":108,\"models/glyphs/webgl/line.frag\":109,\"models/glyphs/patch\":110,\"models/glyphs/harea\":111,\"models/glyphs/area\":112,\"models/glyphs/varea\":113,\"models/sources/cds_view\":114,\"core/build_views\":115,\"models/renderers/graph_renderer\":116,\"models/graphs/graph_hit_test_policy\":117,\"models/selections/interaction_policy\":118,\"core/util/typed_array\":119,\"core/util/set\":120,\"document/events\":121,\"models/annotations/band\":122,\"models/annotations/upper_lower\":123,\"models/annotations/box_annotation\":124,\"models/annotations/color_bar\":125,\"models/tickers/basic_ticker\":126,\"models/tickers/adaptive_ticker\":127,\"models/tickers/continuous_ticker\":128,\"models/tickers/ticker\":129,\"models/formatters/basic_tick_formatter\":130,\"models/formatters/tick_formatter\":131,\"models/mappers/index\":132,\"models/mappers/categorical_color_mapper\":133,\"models/mappers/categorical_mapper\":134,\"models/mappers/color_mapper\":135,\"models/mappers/mapper\":136,\"models/transforms/transform\":137,\"models/mappers/categorical_marker_mapper\":138,\"models/mappers/categorical_pattern_mapper\":139,\"models/mappers/continuous_color_mapper\":140,\"models/mappers/linear_color_mapper\":141,\"models/mappers/log_color_mapper\":142,\"models/mappers/scanning_color_mapper\":143,\"models/mappers/eqhist_color_mapper\":144,\"models/scales/linear_scale\":145,\"models/scales/continuous_scale\":146,\"models/scales/scale\":147,\"models/transforms/index\":148,\"models/transforms/customjs_transform\":149,\"models/transforms/dodge\":150,\"models/transforms/range_transform\":151,\"models/transforms/interpolator\":152,\"models/transforms/jitter\":153,\"models/transforms/linear_interpolator\":154,\"models/transforms/step_interpolator\":155,\"models/scales/linear_interpolation_scale\":156,\"models/scales/log_scale\":157,\"models/ranges/range1d\":158,\"core/util/text\":159,\"models/annotations/label\":160,\"models/annotations/text_annotation\":161,\"models/annotations/label_set\":162,\"models/annotations/legend\":163,\"models/annotations/legend_item\":164,\"core/vectorization\":165,\"models/annotations/poly_annotation\":166,\"models/annotations/slope\":167,\"models/annotations/span\":168,\"models/annotations/title\":169,\"models/annotations/toolbar_panel\":170,\"models/annotations/tooltip\":171,\"styles/tooltips\":172,\"styles/mixins\":173,\"styles/tooltips.css\":174,\"models/annotations/whisker\":175,\"models/axes/index\":176,\"models/axes/axis\":177,\"models/renderers/guide_renderer\":178,\"models/axes/categorical_axis\":179,\"models/tickers/categorical_ticker\":180,\"models/formatters/categorical_tick_formatter\":181,\"models/axes/continuous_axis\":182,\"models/axes/datetime_axis\":183,\"models/axes/linear_axis\":184,\"models/formatters/datetime_tick_formatter\":185,\"core/util/templating\":187,\"models/tickers/datetime_ticker\":190,\"models/tickers/composite_ticker\":191,\"models/tickers/days_ticker\":192,\"models/tickers/single_interval_ticker\":193,\"models/tickers/util\":194,\"models/tickers/months_ticker\":195,\"models/tickers/years_ticker\":196,\"models/axes/log_axis\":197,\"models/formatters/log_tick_formatter\":198,\"models/tickers/log_ticker\":199,\"models/axes/mercator_axis\":200,\"models/formatters/mercator_tick_formatter\":201,\"models/tickers/mercator_ticker\":202,\"models/callbacks/index\":203,\"models/callbacks/customjs\":204,\"models/callbacks/callback\":205,\"models/callbacks/open_url\":206,\"models/canvas/index\":207,\"models/canvas/cartesian_frame\":208,\"models/scales/categorical_scale\":209,\"models/ranges/data_range1d\":210,\"models/ranges/data_range\":211,\"core/layout/index\":212,\"core/layout/types\":213,\"core/layout/layoutable\":214,\"core/layout/alignments\":215,\"core/layout/grid\":216,\"core/layout/html\":217,\"models/expressions/index\":218,\"models/expressions/expression\":219,\"models/expressions/stack\":220,\"models/expressions/cumsum\":221,\"models/filters/index\":222,\"models/filters/boolean_filter\":223,\"models/filters/filter\":224,\"models/filters/customjs_filter\":225,\"models/filters/group_filter\":226,\"models/filters/index_filter\":227,\"models/formatters/index\":228,\"models/formatters/func_tick_formatter\":229,\"models/formatters/numeral_tick_formatter\":230,\"models/formatters/printf_tick_formatter\":231,\"models/glyphs/index\":232,\"models/glyphs/annular_wedge\":233,\"models/glyphs/annulus\":234,\"models/glyphs/arc\":235,\"models/glyphs/bezier\":236,\"models/glyphs/circle\":237,\"models/glyphs/webgl/markers\":238,\"models/glyphs/webgl/markers.vert\":239,\"models/glyphs/webgl/markers.frag\":240,\"models/glyphs/center_rotatable\":241,\"models/glyphs/ellipse\":242,\"models/glyphs/ellipse_oval\":243,\"models/glyphs/hbar\":244,\"models/glyphs/box\":245,\"models/glyphs/hex_tile\":246,\"models/glyphs/image\":247,\"models/glyphs/image_base\":248,\"models/glyphs/image_rgba\":249,\"models/glyphs/image_url\":250,\"core/util/image\":251,\"models/glyphs/multi_line\":252,\"models/glyphs/multi_polygons\":253,\"models/glyphs/oval\":254,\"models/glyphs/patches\":255,\"models/glyphs/quad\":256,\"models/glyphs/quadratic\":257,\"models/glyphs/ray\":258,\"models/glyphs/rect\":259,\"models/glyphs/segment\":260,\"models/glyphs/step\":261,\"models/glyphs/text\":262,\"models/glyphs/vbar\":263,\"models/glyphs/wedge\":264,\"models/graphs/index\":265,\"models/graphs/layout_provider\":266,\"models/graphs/static_layout_provider\":267,\"models/grids/index\":268,\"models/grids/grid\":269,\"models/layouts/index\":270,\"models/layouts/box\":271,\"models/layouts/layout_dom\":272,\"styles/root\":273,\"models/layouts/column\":274,\"models/layouts/grid_box\":275,\"models/layouts/html_box\":276,\"models/layouts/row\":277,\"models/layouts/spacer\":278,\"models/layouts/tabs\":279,\"styles/tabs\":280,\"styles/buttons\":281,\"styles/menus\":282,\"styles/buttons.css\":283,\"styles/menus.css\":284,\"styles/tabs.css\":285,\"models/layouts/widget_box\":286,\"models/markers/index\":287,\"models/markers/defs\":288,\"models/markers/marker\":289,\"models/markers/scatter\":290,\"models/plots/index\":291,\"models/plots/gmap_plot\":292,\"models/plots/plot\":293,\"models/tools/toolbar\":294,\"models/tools/inspectors/inspect_tool\":295,\"models/tools/button_tool\":296,\"models/tools/tool\":298,\"styles/toolbar\":299,\"styles/toolbar.css\":300,\"styles/icons.css\":301,\"core/util/menus\":302,\"core/util/iterator\":303,\"models/tools/on_off_button\":304,\"models/tools/toolbar_base\":305,\"models/tools/gestures/gesture_tool\":306,\"models/tools/actions/action_tool\":307,\"models/tools/actions/help_tool\":308,\"styles/icons\":309,\"styles/logo\":310,\"styles/logo.css\":311,\"models/plots/plot_canvas\":312,\"core/bokeh_events\":313,\"core/ui_events\":314,\"core/util/wheel\":315,\"core/util/throttle\":316,\"core/layout/border\":317,\"core/layout/side_panel\":318,\"models/plots/gmap_plot_canvas\":319,\"models/ranges/index\":320,\"models/renderers/index\":321,\"models/scales/index\":322,\"models/selections/index\":323,\"models/sources/index\":324,\"models/sources/server_sent_data_source\":325,\"models/sources/web_data_source\":326,\"models/sources/ajax_data_source\":327,\"models/sources/geojson_data_source\":328,\"models/tickers/index\":329,\"models/tickers/fixed_ticker\":330,\"models/tiles/index\":331,\"models/tiles/bbox_tile_source\":332,\"models/tiles/mercator_tile_source\":333,\"models/tiles/tile_source\":334,\"models/tiles/tile_utils\":335,\"models/tiles/quadkey_tile_source\":336,\"models/tiles/tile_renderer\":337,\"models/tiles/wmts_tile_source\":338,\"styles/tiles\":339,\"styles/tiles.css\":340,\"models/tiles/tms_tile_source\":341,\"models/textures/index\":342,\"models/textures/canvas_texture\":343,\"models/textures/texture\":344,\"models/textures/image_url_texture\":345,\"models/tools/index\":346,\"models/tools/actions/custom_action\":347,\"models/tools/actions/redo_tool\":348,\"models/tools/actions/reset_tool\":349,\"models/tools/actions/save_tool\":350,\"models/tools/actions/undo_tool\":351,\"models/tools/actions/zoom_in_tool\":352,\"models/tools/actions/zoom_base_tool\":353,\"core/util/zoom\":354,\"models/tools/actions/zoom_out_tool\":355,\"models/tools/edit/edit_tool\":356,\"models/tools/edit/box_edit_tool\":357,\"models/tools/edit/freehand_draw_tool\":358,\"models/tools/edit/point_draw_tool\":359,\"models/tools/edit/poly_draw_tool\":360,\"models/tools/edit/poly_tool\":361,\"models/tools/edit/poly_edit_tool\":362,\"models/tools/gestures/box_select_tool\":363,\"models/tools/gestures/select_tool\":364,\"models/tools/util\":365,\"models/tools/gestures/box_zoom_tool\":366,\"models/tools/gestures/lasso_select_tool\":367,\"models/tools/gestures/poly_select_tool\":368,\"models/tools/edit/line_edit_tool\":369,\"models/tools/edit/line_tool\":370,\"models/tools/gestures/pan_tool\":371,\"models/tools/gestures/range_tool\":372,\"models/tools/gestures/tap_tool\":373,\"models/tools/gestures/wheel_pan_tool\":374,\"models/tools/gestures/wheel_zoom_tool\":375,\"models/tools/inspectors/crosshair_tool\":376,\"models/tools/inspectors/customjs_hover\":377,\"models/tools/inspectors/hover_tool\":378,\"models/tools/tool_proxy\":379,\"models/tools/toolbar_box\":380,\"embed/standalone\":381,\"embed/dom\":382,\"embed/server\":383,\"client/connection\":384,\"protocol/message\":385,\"protocol/receiver\":386,\"client/session\":387,\"embed/notebook\":388,\"styles/notebook.css\":389,\"protocol/index\":390,\"testing\":391,\"safely\":392}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-widgets.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 402: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},\n", - " 403: function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},\n", - " 404: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),c.default]}_render_button(...t){return o.button({type:\"button\",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__=\"AbstractButtonView\";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,\"Button\"],icon:[s.Instance],button_type:[s.ButtonType,\"default\"]})}}n.AbstractButton=a,a.__name__=\"AbstractButton\",a.init_AbstractButton()},\n", - " 405: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,\"disabled\",this.model.disabled)})}}o.ControlView=i,i.__name__=\"ControlView\";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__=\"Control\"},\n", - " 472: function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return\"horizontal\"==this.model.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.model.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,\"horizontal\"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__=\"Widget\",s.init_Widget()},\n", - " 407: function _(e,t,c){Object.defineProperty(c,\"__esModule\",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__=\"AbstractIconView\";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__=\"AbstractIcon\"},\n", - " 408: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",e=>this._keydown(e)),this.input_el.addEventListener(\"keyup\",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener(\"click\",e=>this._menu_click(e)),this.menu.addEventListener(\"mouseover\",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__=\"AutocompleteInput\",a.init_AutocompleteInput()},\n", - " 409: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:\"text\",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"input\",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__=\"TextInputView\";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,\"\"],value_input:[p.String,\"\"],placeholder:[p.String,\"\"]})}}i.TextInput=h,h.__name__=\"TextInput\",h.init_TextInput()},\n", - " 410: function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[...super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?\"none\":\"\"}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__=\"InputWidgetView\";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,\"\"]})}}i.InputWidget=u,u.__name__=\"InputWidget\",u.init_InputWidget()},\n", - " 411: function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-input {\\n display: inline-block;\\n width: 100%;\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n min-height: 31px;\\n padding: 0 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n}\\n.bk-root .bk-input:focus {\\n border-color: #66afe9;\\n outline: 0;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\\n}\\n.bk-root .bk-input::placeholder,\\n.bk-root .bk-input:-ms-input-placeholder,\\n.bk-root .bk-input::-moz-placeholder,\\n.bk-root .bk-input::-webkit-input-placeholder {\\n color: #999;\\n opacity: 1;\\n}\\n.bk-root .bk-input[disabled] {\\n cursor: not-allowed;\\n background-color: #eee;\\n opacity: 1;\\n}\\n.bk-root select:not([multiple]).bk-input,\\n.bk-root select:not([size]).bk-input {\\n height: auto;\\n appearance: none;\\n -webkit-appearance: none;\\n background-image: url(\\'data:image/svg+xml;utf8,\\');\\n background-position: right 0.5em center;\\n background-size: 8px 6px;\\n background-repeat: no-repeat;\\n}\\n.bk-root select[multiple].bk-input,\\n.bk-root select[size].bk-input,\\n.bk-root textarea.bk-input {\\n height: auto;\\n}\\n.bk-root .bk-input-group {\\n width: 100%;\\n height: 100%;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: start;\\n -webkit-align-items: start;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n white-space: nowrap;\\n}\\n.bk-root .bk-input-group.bk-inline {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\\n margin-left: 5px;\\n}\\n.bk-root .bk-input-group input[type=\"checkbox\"] + span,\\n.bk-root .bk-input-group input[type=\"radio\"] + span {\\n position: relative;\\n top: -2px;\\n margin-left: 3px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper {\\n display: inherit;\\n width: inherit;\\n height: inherit;\\n position: relative;\\n overflow: hidden;\\n padding: 0;\\n vertical-align: middle;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper input {\\n padding-right: 20px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\\n position: absolute;\\n display: block;\\n height: 50%;\\n min-height: 0;\\n min-width: 0;\\n width: 30px;\\n padding: 0;\\n margin: 0;\\n right: 0;\\n border: none;\\n background: none;\\n cursor: pointer;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\\n content: \"\";\\n display: inline-block;\\n transform: translateY(-50%);\\n border-left: 5px solid transparent;\\n border-right: 5px solid transparent;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\\n top: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\\n border-bottom: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\\n border-bottom-color: grey;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\\n bottom: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\\n border-top: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\\n border-top-color: grey;\\n}\\n'},\n", - " 412: function _(u,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.bk_input=\"bk-input\",n.bk_input_group=\"bk-input-group\"},\n", - " 413: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__=\"ButtonView\";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:\"Button\"})}}n.Button=u,u.__name__=\"Button\",u.init_Button()},\n", - " 414: function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__=\"CheckboxButtonGroupView\";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__=\"CheckboxButtonGroup\",r.init_CheckboxButtonGroup()},\n", - " 415: function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener(\"click\",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__=\"ButtonGroupView\";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,\"default\"]})}}s.ButtonGroup=l,l.__name__=\"ButtonGroup\",l.init_ButtonGroup()},\n", - " 416: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;nthis.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}i.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__=\"CheckboxGroup\",p.init_CheckboxGroup()},\n", - " 417: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[...super.styles(),r.default]}}n.InputGroupView=u,u.__name__=\"InputGroupView\";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__=\"InputGroup\"},\n", - " 418: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:\"color\",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__=\"ColorPickerView\";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,\"#000000\"]})}}t.ColorPicker=d,d.__name__=\"ColorPicker\",d.init_ColorPicker()},\n", - " 419: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:\"text\",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__=\"DatePickerView\";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,\"auto\"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__=\"DatePicker\",h.init_DatePicker()},\n", - " 420: function _(e,t,n){\n", - " /* flatpickr v4.6.3, @license MIT */var a,i;a=this,i=function(){\"use strict\";\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation. All rights reserved.\n", - " Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use\n", - " this file except in compliance with the License. You may obtain a copy of the\n", - " License at http://www.apache.org/licenses/LICENSE-2.0\n", - " \n", - " THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n", - " KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\n", - " WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\n", - " MERCHANTABLITY OR NON-INFRINGEMENT.\n", - " \n", - " See the Apache Version 2.0 License for specific language governing permissions\n", - " and limitations under the License.\n", - " ***************************************************************************** */var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return\"th\";switch(t%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},i=function(e){return(\"0\"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||\"\",n=n||\"\",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d(\"div\",\"numInputWrapper\"),a=d(\"input\",\"numInput \"+e),i=d(\"span\",\"arrowUp\"),o=d(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?\"shorthand\":\"longhand\"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],\"i\").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split(\"\").map((function(t,n,o){return h[t]&&\"\\\\\"!==o[n-1]?h[t](e,a,i):\"\\\\\"!==t?t:\"\"})).join(\"\")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D=\"\";hr&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe(\"onChange\")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add(\"inRange\"),h.weekNumbers&&1===h.config.showMonths&&\"prevMonthDay\"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+h.config.getWeek(t)+\"\"),fe(\"onDayCreate\",o),o}function j(e){e.focus(),\"range\"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A(\"\",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d(\"div\",\"dayContainer\");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t1||\"dropdown\"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&eh.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML=\"\";for(var t=0;t<12;t++)if(e(t)){var n=d(\"option\",\"flatpickr-monthDropdown-month\");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d(\"div\",\"flatpickr-month\"),n=window.document.createDocumentFragment();h.config.showMonths>1||\"static\"===h.config.monthSelectorType?e=d(\"span\",\"cur-month\"):(h.monthsDropdownContainer=d(\"select\",\"flatpickr-monthDropdown-months\"),O(h.monthsDropdownContainer,\"change\",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe(\"onMonthChange\")})),B(),e=h.monthsDropdownContainer);var a=u(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute(\"min\",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute(\"max\",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e--;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d(\"div\",\"flatpickr-weekdays\");for(var e=h.config.showMonths;e--;){var t=d(\"div\",\"flatpickr-weekdaycontainer\");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe(\"onYearChange\"),B()),R(),fe(\"onMonthChange\"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t=\"function\"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),\"range\"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&eh.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe(\"onYearChange\"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf(\"hidden\")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe(\"onKeyDown\",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>n&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?\"startRange\":\"endRange\"),nt&&m===n&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||\"min\"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){\"object\"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error(\"flatpickr: invalid locale \"+h.config.locale)),h.l10n=e({},y.l10ns.default,\"object\"==typeof h.config.locale?h.config.locale:\"default\"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K=\"(\"+h.l10n.amPM[0]+\"|\"+h.l10n.amPM[1]+\"|\"+h.l10n.amPM[0].toLowerCase()+\"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&dn,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,\"arrowTop\",!s),c(h.calendarContainer,\"arrowBottom\",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&\"center\"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,\"rightMost\",g),!h.config.static)if(h.calendarContainer.style.top=u+\"px\",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C=\"{left:\"+l.left+\"px;right:auto;}\";c(h.calendarContainer,\"rightMost\",!1),c(h.calendarContainer,\"centerMost\",!0),v.insertRule(\".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after\"+C,b),h.calendarContainer.style.left=w+\"px\",h.calendarContainer.style.right=\"auto\"}else h.calendarContainer.style.left=\"auto\",h.calendarContainer.style.right=m+\"px\";else h.calendarContainer.style.left=f+\"px\",h.calendarContainer.style.right=\"auto\"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf(\"MSIE\")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\")&&!e.classList.contains(\"notAllowed\")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()h.currentMonth+h.config.showMonths-1)&&\"range\"!==h.config.mode;if(h.selectedDateElem=n,\"single\"===h.config.mode)h.selectedDates=[a];else if(\"multiple\"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else\"range\"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe(\"onYearChange\"),B()),fe(\"onMonthChange\")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||\"range\"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l=\"single\"===h.config.mode&&!h.config.enableTime,c=\"range\"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value=\"\",void 0!==h.altInput&&(h.altInput.value=\"\"),void 0!==h.mobileInput&&(h.mobileInput.value=\"\"),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe(\"onChange\")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove(\"open\"),void 0!==h._input&&h._input.classList.remove(\"active\")),fe(\"onClose\")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe(\"onDestroy\");for(var e=h._handlers.length;e--;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type=\"text\",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove(\"flatpickr-input\"),h.input.removeAttribute(\"readonly\"),h.input.value=\"\"),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe(\"onOpen\");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add(\"open\"),h._input.classList.add(\"active\"),fe(\"onOpen\"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe(\"onChange\")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||\"number\"==typeof e)n=[h.parseDate(e,t)];else if(\"string\"==typeof e)switch(h.config.mode){case\"single\":case\"time\":n=[h.parseDate(e,t)];break;case\"multiple\":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case\"range\":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),\"range\"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a1||\"static\"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+\" \":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYearh.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return\"range\"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join(\"range\"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):\"\"),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe(\"onValueUpdate\")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains(\"arrowUp\")?h.changeYear(h.currentYear+1):e.target.classList.contains(\"arrowDown\")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=[\"wrap\",\"weekNumbers\",\"allowInput\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,\"enable\",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,\"disable\",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):c+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}i.altInputClass||(h.config.altInputClass=h.input.className+\" \"+h.config.altInputClass),Object.defineProperty(h.config,\"minDate\",{get:function(){return h.config._minDate},set:ae(\"min\")}),Object.defineProperty(h.config,\"maxDate\",{get:function(){return h.config._maxDate},set:ae(\"max\")});var s=function(e){return function(t){h.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=h.parseDate(t,\"H:i:S\")}};Object.defineProperty(h.config,\"minTime\",{get:function(){return h.config._minTime},set:s(\"min\")}),Object.defineProperty(h.config,\"maxTime\",{get:function(){return h.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe(\"onParseConfig\")}(),ie(),h.input=h.config.wrap?f.querySelector(\"[data-input]\"):f,h.input?(h.input._type=h.input.type,h.input.type=\"text\",h.input.classList.add(\"flatpickr-input\"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type=\"text\",h.input.setAttribute(\"type\",\"hidden\"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute(\"readonly\",\"readonly\"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error(\"Invalid input element specified\")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||(\"INPUT\"!==h.input.nodeName&&\"TEXTAREA\"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,\"H:i\")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,\"H:i\")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,\"showTimeInput\",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,\"showTimeInput\",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d(\"div\",\"flatpickr-calendar\"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d(\"div\",\"flatpickr-months\"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d(\"span\",\"flatpickr-prev-month\"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d(\"span\",\"flatpickr-next-month\"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,\"_hidePrevMonthArrow\",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,\"flatpickr-disabled\",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,\"_hideNextMonthArrow\",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,\"flatpickr-disabled\",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d(\"div\",\"flatpickr-innerContainer\"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add(\"hasWeeks\");var e=d(\"div\",\"flatpickr-weekwrapper\");e.appendChild(d(\"span\",\"flatpickr-weekday\",h.l10n.weekAbbreviation));var t=d(\"div\",\"flatpickr-weeks\");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d(\"div\",\"flatpickr-rContainer\"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d(\"div\",\"flatpickr-days\"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add(\"hasTime\"),h.config.noCalendar&&h.calendarContainer.classList.add(\"noCalendar\"),h.timeContainer=d(\"div\",\"flatpickr-time\"),h.timeContainer.tabIndex=-1;var e=d(\"span\",\"flatpickr-time-separator\",\":\"),t=u(\"flatpickr-hour\",{\"aria-label\":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName(\"input\")[0];var n=u(\"flatpickr-minute\",{\"aria-label\":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName(\"input\")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute(\"step\",h.config.hourIncrement.toString()),h.minuteElement.setAttribute(\"step\",h.config.minuteIncrement.toString()),h.hourElement.setAttribute(\"min\",h.config.time_24hr?\"0\":\"1\"),h.hourElement.setAttribute(\"max\",h.config.time_24hr?\"23\":\"12\"),h.minuteElement.setAttribute(\"min\",\"0\"),h.minuteElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add(\"time24hr\"),h.config.enableSeconds){h.timeContainer.classList.add(\"hasSeconds\");var a=u(\"flatpickr-second\");h.secondElement=a.getElementsByTagName(\"input\")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute(\"step\",h.minuteElement.getAttribute(\"step\")),h.secondElement.setAttribute(\"min\",\"0\"),h.secondElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(d(\"span\",\"flatpickr-time-separator\",\":\")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d(\"span\",\"flatpickr-am-pm\",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,\"rangeMode\",\"range\"===h.config.mode),c(h.calendarContainer,\"animate\",!0===h.config.animate),c(h.calendarContainer,\"multiMonth\",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?\"inline\":\"static\"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d(\"div\",\"flatpickr-wrapper\");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(t){return O(t,\"click\",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?\"time\":\"datetime-local\":\"date\";h.mobileInput=d(\"input\",h.input.className+\" flatpickr-mobile\"),h.mobileInput.step=h.input.getAttribute(\"step\")||\"any\",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,\"Y-m-d\")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,\"Y-m-d\")),h.input.type=\"hidden\",void 0!==h.altInput&&(h.altInput.type=\"hidden\");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,\"change\",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe(\"onChange\"),fe(\"onClose\")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,\"mouseover\",(function(e){\"range\"===h.config.mode&&ee(e.target)})),O(window.document.body,\"keydown\",X),h.config.inline||h.config.static||O(window,\"resize\",e),void 0!==window.ontouchstart?O(window.document,\"touchstart\",G):O(window.document,\"mousedown\",_(G)),O(window.document,\"focus\",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,\"focus\",h.open),O(h._input,\"mousedown\",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,\"mousedown\",_(De)),O(h.monthNav,[\"keyup\",\"increment\"],S),O(h.daysContainer,\"mousedown\",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,[\"increment\"],x),O(h.timeContainer,\"blur\",x,{capture:!0}),O(h.timeContainer,\"mousedown\",_(P)),O([h.hourElement,h.minuteElement],[\"focus\",\"click\"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,\"focus\",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,\"mousedown\",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe(\"onReady\")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[...super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?\"none\":\"\",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+\": \"),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(\" .. \");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on(\"slide\",(t,e,i)=>this._slide(i)),this.noUiSlider.on(\"change\",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this.noUiSlider.on(\"start\",(t,e)=>o(e,!0)),this.noUiSlider.on(\"end\",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__=\"AbstractBaseSliderView\";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__=\"AbstractSliderView\";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__=\"AbstractRangeSliderView\";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]}))}_formatter(t,e){return\"\"+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__=\"AbstractSlider\",b.init_AbstractSlider()},\n", - " 424: function _(t,e,r){\n", - " /*! nouislider - 14.6.0 - 6/27/2020 */\n", - " var n;n=function(){\"use strict\";var t=\"14.6.0\";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function c(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function p(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if(\"number\"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' contains invalid value.\");if(!i(n=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!i(e[0]))throw new Error(\"noUiSlider (14.6.0): 'range' value isn't numeric.\");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&\"object\"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"};function y(t){if(function(t){return\"object\"==typeof t&&\"function\"==typeof t.to&&\"function\"==typeof t.from}(t))return!0;throw new Error(\"noUiSlider (14.6.0): 'format' requires 'to' and 'from' methods.\")}function E(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'step' is not numeric.\");t.singleStep=e}function C(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function N(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider (14.6.0): Missing 'min' or 'max' in 'range'.\");if(e.min===e.max)throw new Error(\"noUiSlider (14.6.0): 'range' 'min' and 'max' cannot be equal.\");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider (14.6.0): 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'snap' option must be a boolean.\")}function A(t,e){if(t.animate=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animate' option must be a boolean.\")}function V(t,e){if(t.animationDuration=e,\"number\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animationDuration' option must be a number.\")}function D(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider (14.6.0): 'padding' option must not exceed 100% of the range.\")}}function H(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider (14.6.0): 'direction' option was not recognized.\")}}function j(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider (14.6.0): 'fixed' behaviour must be used with 2 handles\");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider (14.6.0): 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute(\"data-value\",o),a.style[r.style]=t+\"%\",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if(\"range\"===t||\"steps\"===t)return y.xVal;if(\"count\"===t){if(e<2)throw new Error(\"noUiSlider (14.6.0): 'values' (>= 2) required for mode 'count'.\");var n=e-1,i=100/n;for(e=[];n--;)e[n]=n*i;e.push(100),t=\"positions\"}return\"positions\"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):\"values\"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w=\"steps\"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf(\"touch\"),s=0===t.type.indexOf(\"mouse\"),a=0===t.type.indexOf(\"pointer\");if(0===t.type.indexOf(\"MSPointer\")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor=\"\",V.removeEventListener(\"selectstart\",n))),e.handleNumbers.forEach((function(t){et(\"change\",t),et(\"set\",t),et(\"end\",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_(\"mouseout\",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener(\"selectstart\",n,!1)),e.handleNumbers.forEach((function(t){et(\"start\",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et(\"slide\",n,!0),et(\"update\",n,!0),et(\"change\",n,!0),et(\"set\",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){\"hover\"===t.split(\".\")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),\"update\"===t.split(\".\")[0]&&f.forEach((function(t,e){et(\"update\",e)}))}function tt(t){var e=t&&t.split(\".\")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(\".\")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et(\"update\",t),et(\"slide\",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n=\"translate(\"+nt(10*(ot(e,0)-D)+\"%\",\"0\")+\")\";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o=\"translate(\"+nt(ot(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+nt(i/100,\"1\")+\")\";d[t].style[r.transformRule]=o+\" \"+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:(\"number\"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,\"rtl\"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip {\\n -webkit-transform: translate(50%, 0);\\n transform: translate(50%, 0);\\n left: auto;\\n bottom: 10px;\\n}\\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\\n -webkit-transform: translate(0, -18px);\\n transform: translate(0, -18px);\\n top: auto;\\n right: 28px;\\n}\\n.bk-root .noUi-handle {\\n cursor: grab;\\n cursor: -webkit-grab;\\n}\\n.bk-root .noUi-handle.noUi-active {\\n cursor: grabbing;\\n cursor: -webkit-grabbing;\\n}\\n.bk-root .noUi-handle:after,\\n.bk-root .noUi-handle:before {\\n display: none;\\n}\\n.bk-root .noUi-tooltip {\\n display: none;\\n white-space: nowrap;\\n}\\n.bk-root .noUi-handle:hover .noUi-tooltip {\\n display: block;\\n}\\n.bk-root .noUi-horizontal {\\n width: 100%;\\n height: 10px;\\n}\\n.bk-root .noUi-vertical {\\n width: 10px;\\n height: 100%;\\n}\\n.bk-root .noUi-horizontal .noUi-handle {\\n width: 14px;\\n height: 18px;\\n right: -7px;\\n top: -5px;\\n}\\n.bk-root .noUi-vertical .noUi-handle {\\n width: 18px;\\n height: 14px;\\n right: -5px;\\n top: -7px;\\n}\\n.bk-root .noUi-target.noUi-horizontal {\\n margin: 5px 0px;\\n}\\n.bk-root .noUi-target.noUi-vertical {\\n margin: 0px 5px;\\n}\\n\"},\n", - " 427: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default=\"\\n.bk-root .bk-slider-title {\\n white-space: nowrap;\\n}\\n.bk-root .bk-slider-value {\\n font-weight: 600;\\n}\\n\"},\n", - " 428: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__=\"DateSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:\"%d %b %Y\"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__=\"DateSlider\",s.init_DateSlider()},\n", - " 429: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__=\"DivView\";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__=\"Div\",a.init_Div()},\n", - " 430: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[...super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__=\"MarkupView\";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,\"\"],style:[l.Any,{}]})}}s.Markup=o,o.__name__=\"Markup\",o.init_Markup()},\n", - " 431: function _(e,c,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.bk_clearfix=\"bk-clearfix\"},\n", - " 432: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-clearfix:before,\\n.bk-root .bk-clearfix:after {\\n content: \"\";\\n display: table;\\n}\\n.bk-root .bk-clearfix:after {\\n clear: both;\\n}\\n'},\n", - " 433: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener(\"click\",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener(\"click\",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:\"Dropdown\"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__=\"Dropdown\",m.init_Dropdown()},\n", - " 434: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement(\"input\"),this.dialogEl.type=\"file\",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&\"\"!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width=\"{this.model.width}px\",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__=\"FileInputView\";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,\"\"],mime_type:[l.Any,\"\"],filename:[l.Any,\"\"],accept:[l.String,\"\"],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__=\"FileInput\",o.init_FileInput()},\n", - " 435: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__=\"MultiSelectView\";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__=\"MultiSelect\",d.init_MultiSelect()},\n", - " 436: function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__=\"ParagraphView\";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__=\"Paragraph\",i.init_Paragraph()},\n", - " 437: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}s.PasswordInputView=r,r.__name__=\"PasswordInputView\";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__=\"PasswordInput\",p.init_PasswordInput()},\n", - " 438: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[...super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?\"solid\":\"light\",l=\"choices__item \"+i,h=\"choices__button \"+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener(\"change\",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__=\"MultiChoiceView\";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__=\"MultiChoice\",r.init_MultiChoice()},\n", - " 439: function _(e,t,i){\n", - " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", - " var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", - " /*!\n", - " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", - " *\n", - " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", - " * All Rights Reserved. Apache Software License 2.0\n", - " *\n", - " * http://www.apache.org/licenses/LICENSE-2.0\n", - " */\n", - " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function ye(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(\"[data-choice-selectable]\");else{var p=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,\"[data-choice-selectable]\",d):this.dropdown.element.querySelector(\"[data-choice-selectable]\")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;rthis.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:\"text\",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"focusout\",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter(e=>d.test(e)):\"float\"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__=\"NumericInputView\";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,\"\"],mode:[o.Any,\"int\"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):\"\"+e}}l.NumericInput=m,m.__name__=\"NumericInput\",m.init_NumericInput()},\n", - " 442: function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},\n", - " 443: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__=\"RadioButtonGroupView\";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__=\"RadioButtonGroup\",c.init_RadioButtonGroup()},\n", - " 446: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;sthis.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__=\"RadioGroupView\";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__=\"RadioGroup\",u.init_RadioGroup()},\n", - " 447: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__=\"RangeSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:\"0[.]00\"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__=\"RangeSlider\",s.init_RangeSlider()},\n", - " 448: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,...this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__=\"SelectView\";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,\"\"],options:[p.Any,[]]})}}i.Select=h,h.__name__=\"Select\",h.init_Select()},\n", - " 449: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__=\"SliderView\";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:\"0[.]00\"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__=\"Slider\",a.init_Slider()},\n", - " 450: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends s.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=r.button({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",e=>this._btn_mouse_down(e)),e.addEventListener(\"mouseup\",()=>this._btn_mouse_up()),e.addEventListener(\"mouseleave\",()=>this._btn_mouse_leave());this.input_el.addEventListener(\"keydown\",e=>this._input_key_down(e)),this.input_el.addEventListener(\"keyup\",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener(\"wheel\",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(...[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:\"float\"})}}i.Spinner=d,d.__name__=\"Spinner\",d.init_Spinner()},\n", - " 451: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__=\"TextAreaInputView\";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,\"\"],value_input:[h.String,\"\"],placeholder:[h.String,\"\"],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__=\"TextAreaInput\",p.init_TextAreaInput()},\n", - " 452: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__=\"ToggleView\";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:\"Toggle\"})}}i.Toggle=_,_.__name__=\"Toggle\",_.init_Toggle()},\n", - " }, 402, {\"models/widgets/main\":402,\"models/widgets/index\":403,\"models/widgets/abstract_button\":404,\"models/widgets/control\":405,\"models/widgets/widget\":472,\"models/widgets/abstract_icon\":407,\"models/widgets/autocomplete_input\":408,\"models/widgets/text_input\":409,\"models/widgets/input_widget\":410,\"styles/widgets/inputs.css\":411,\"styles/widgets/inputs\":412,\"models/widgets/button\":413,\"models/widgets/checkbox_button_group\":414,\"models/widgets/button_group\":415,\"models/widgets/checkbox_group\":416,\"models/widgets/input_group\":417,\"models/widgets/color_picker\":418,\"models/widgets/date_picker\":419,\"styles/widgets/flatpickr.css\":421,\"models/widgets/date_range_slider\":422,\"models/widgets/abstract_slider\":423,\"styles/widgets/sliders\":425,\"styles/widgets/nouislider.css\":426,\"styles/widgets/sliders.css\":427,\"models/widgets/date_slider\":428,\"models/widgets/div\":429,\"models/widgets/markup\":430,\"styles/clearfix\":431,\"styles/clearfix.css\":432,\"models/widgets/dropdown\":433,\"models/widgets/file_input\":434,\"models/widgets/multiselect\":435,\"models/widgets/paragraph\":436,\"models/widgets/password_input\":437,\"models/widgets/multichoice\":438,\"styles/widgets/choices.css\":440,\"models/widgets/numeric_input\":441,\"api/linalg\":442,\"core/util/random\":443,\"models/widgets/pretext\":444,\"models/widgets/radio_button_group\":445,\"models/widgets/radio_group\":446,\"models/widgets/range_slider\":447,\"models/widgets/selectbox\":448,\"models/widgets/slider\":449,\"models/widgets/spinner\":450,\"models/widgets/textarea_input\":451,\"models/widgets/toggle\":452}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh-widgets.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-tables.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 453: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},\n", - " 454: function _(a,g,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},\n", - " 455: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__=\"CellEditorView\";class o extends n.Model{}i.CellEditor=o,o.__name__=\"CellEditor\";class _ extends d{get emptyValue(){return\"\"}_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__=\"StringEditorView\";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__=\"StringEditor\",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__=\"TextEditorView\";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__=\"TextEditor\",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__=\"SelectEditorView\";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__=\"SelectEditor\",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:\"text\"})}}i.PercentEditorView=m,m.__name__=\"PercentEditorView\";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__=\"PercentEditor\",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__=\"CheckboxEditorView\";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__=\"CheckboxEditor\",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__=\"IntEditorView\";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__=\"IntEditor\",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__=\"NumberEditorView\";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__=\"NumberEditor\",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:\"text\"})}}i.TimeEditorView=I,I.__name__=\"TimeEditorView\";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__=\"TimeEditor\",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__=\"DateEditorView\";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__=\"DateEditor\",D.init_DateEditor()},\n", - " 456: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME=\"__bkdt_internal_index__\",i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):\"\"+t>\"\"+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__=\"TableDataProvider\";class x extends _.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__=\"DataTableView\";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[l(i,r),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=C,C.__name__=\"DataTable\",C.init_DataTable()},\n", - " 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&l0&&t-1 in e)}b.fn=b.prototype={jquery:\"3.5.1\",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"�\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[\"+M+\"*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[\"+M+\"*name\"+M+\"*=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name\"+M+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|\"+M+\")\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[\":\"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,\"string\"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,\"parentNode\")},parentsUntil:function(e,t,n){return C(e,\"parentNode\",n)},next:function(e){return H(e,\"nextSibling\")},prev:function(e){return H(e,\"previousSibling\")},nextAll:function(e){return C(e,\"nextSibling\")},prevAll:function(e){return C(e,\"previousSibling\")},nextUntil:function(e,t,n){return C(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return C(e,\"previousSibling\",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,\"template\")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\\x20\\t\\r\\n\\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",b.Callbacks(\"memory\"),b.Callbacks(\"memory\"),2],[\"resolve\",\"done\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener(\"DOMContentLoaded\",F),e.removeEventListener(\"load\",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&--b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener(\"DOMContentLoaded\",F),e.addEventListener(\"load\",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks(\"once memory\").add((function(){G.remove(e,[t+\"queue\",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,he=/^$|^module$|\\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(fe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),fe.setAttribute(\"checked\",\"checked\"),fe.setAttribute(\"name\",\"t\"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML=\"\",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=\"\",d.option=!!ce.lastChild;var ge={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n\",\"\"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||\"\")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function ke(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,\"events\")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function qe(e,t){return k(e,\"table\")&&k(11!==t.nodeType?t:t.firstChild,\"tr\")&&b(e).children(\"tbody\")[0]||e}function Le(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function He(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,\"script\"),Le)).length;f0&&ye(a,!u&&ve(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n3,ne.removeChild(t)),s}}))}();var ze=[\"Webkit\",\"Moz\",\"ms\"],Ue=v.createElement(\"div\").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n--;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^--/,Qe={position:\"absolute\",visibility:\"hidden\",display:\"block\"},Je={letterSpacing:\"0\",fontWeight:\"400\"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||\"px\"):t}function Ze(e,t,n,r,i,o){var a=\"width\"===t?1:0,s=0,u=0;if(n===(r?\"border\":\"content\"))return 0;for(;a<4;a+=2)\"margin\"===n&&(u+=b.css(e,n+te[a],!0,i)),r?(\"content\"===n&&(u-=b.css(e,\"padding\"+te[a],!0,i)),\"margin\"!==n&&(u-=b.css(e,\"border\"+te[a]+\"Width\",!0,i))):(u+=b.css(e,\"padding\"+te[a],!0,i),\"padding\"!==n?u+=b.css(e,\"border\"+te[a]+\"Width\",!0,i):s+=b.css(e,\"border\"+te[a]+\"Width\",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===b.css(e,\"boxSizing\",!1,r),o=i,a=$e(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===b.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===b.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),\"normal\"===i&&t in Je&&(i=Je[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each([\"height\",\"width\"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===b.css(e,\"boxSizing\",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,\"border\",!1,o)-.5)),u&&(i=ee.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,\"marginLeft\"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),b.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?\"\":\"px\")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=te[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&k(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(\" \")}function vt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function yt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,\"tabindex\");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=vt(this))&&G.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":G.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+gt(vt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var mt=/\\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(mt,\"\"):null==n?\"\":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,\"value\");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each([\"radio\",\"checkbox\"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[b.expando]?t:new b.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,\"events\")||Object.create(null))[t.type]&&G.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\\?/;b.parseXML=function(t){var n;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){n=void 0}return n&&!n.getElementsByTagName(\"parsererror\").length||b.error(\"Invalid XML: \"+t),n};var Et=/\\[\\]$/,St=/\\r?\\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)Nt(e+\"[\"+i+\"]\",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join(\"&\")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,\"elements\");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(\":disabled\")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,\"\\r\\n\")}})):{name:t.name,value:n.replace(St,\"\\r\\n\")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\\/\\//,Pt={},Rt={},Mt=\"*/\".concat(\"*\"),It=v.createElement(\"a\");function Wt(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Mt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks(\"once memory\"),x=d.statusCode||{},w={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+\"\").replace(Ot,wt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(O)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+\"//\"+It.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Dt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Ct.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,\"$1\"),p=(Ct.test(i)?\"&\":\"?\")+\"_=\"+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",b.lastModified[i]),b.etag[i]&&E.setRequestHeader(\"If-None-Match\",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Mt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray(\"script\",d.dataTypes)>-1&&(d.converters[\"text script\"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(b.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(b.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--b.active||b.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,\"json\")},getScript:function(e,t){return b.get(e,void 0,t,\"script\")}}),b.each([\"get\",\"post\"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&\"withCredentials\"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),b.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b(\"" - ], - "text/plain": [ - ":DynamicMap [block]\n", - " :Overlay\n", - " .RGB.I :RGB [Date,energy(kWh/hh)] (R,G,B,A)\n", - " .RGB.II :RGB [Date,energy(kWh/hh)] (R,G,B,A)" - ] - }, - "execution_count": 16, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "1001" - } - }, - "output_type": "execute_result" - } - ], - "source": [ - "# # Show split\n", - "scatter = dynspread(datashade(hv.Curve(df_train, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='blue'))\n", - "scatter *= dynspread(datashade(hv.Curve(df_test, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='red'))\n", - "scatter = scatter.opts(plot=dict(width=800))\n", - "scatter" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:26:08.140247Z", - "start_time": "2020-10-19T07:26:08.085737Z" - } - }, - "source": [ - "### Dataset" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:57.918168Z", - "start_time": "2020-10-19T13:24:57.317089Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - ", , , , , , , , , , , ])>\n", - ", , , , , , , , , , , ])>\n" - ] - } - ], - "source": [ - "\n", - "# ### Dataset\n", - "# These are the columns that we wont know in the future\n", - "# We need to blank them out in x_future\n", - "columns_blank=['visibility',\n", - " 'windBearing', 'temperature', 'dewPoint', 'pressure',\n", - " 'apparentTemperature', 'windSpeed', 'humidity']\n", - "df_trains = [d.resample(freq).first().ffill().dropna() for _,d in df_train.groupby('block')]\n", - "df_tests = [d.resample(freq).first().ffill().dropna() for _,d in df_test.groupby('block')]\n", - "ds_train = Seq2SeqDataSets(df_trains,\n", - " window_past=window_past,\n", - " window_future=window_future,\n", - " columns_blank=columns_blank)\n", - "ds_test = Seq2SeqDataSets(df_tests,\n", - " window_past=window_past,\n", - " window_future=window_future,\n", - " columns_blank=columns_blank)\n", - "print(ds_train)\n", - "print(ds_test)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:57.980448Z", - "start_time": "2020-10-19T13:24:57.921511Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "data": { - "text/plain": [ - "[array([[ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -2. , 1. ],\n", - " [ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -1.9791666 , 1. ],\n", - " [ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -1.9583334 , 1. ],\n", - " ...,\n", - " [ 1.0853493 , -0.87347955, 1.0307775 , ..., 0. ,\n", - " -0.0625 , 1. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " -0.04166667, 1. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " -0.02083333, 1. ]], dtype=float32),\n", - " array([[ 0.21577835],\n", - " [ 0.15010113],\n", - " [ 0.13095824],\n", - " [ 0.02481639],\n", - " [ 0.02030303],\n", - " [-0.0716762 ],\n", - " [ 0.15803841],\n", - " [ 0.02917414],\n", - " [-0.0674741 ],\n", - " [ 0.20052628],\n", - " [ 0.19009887],\n", - " [ 0.6498394 ],\n", - " [ 1.2491828 ],\n", - " [ 1.628461 ],\n", - " [ 1.5388163 ],\n", - " [ 1.9378599 ],\n", - " [ 1.5101798 ],\n", - " [ 1.8061942 ],\n", - " [ 1.569943 ],\n", - " [ 1.4147766 ],\n", - " [ 1.5297896 ],\n", - " [ 0.9147271 ],\n", - " [ 0.5668869 ],\n", - " [ 0.6613563 ],\n", - " [ 0.8767526 ],\n", - " [ 1.2315964 ],\n", - " [ 1.4297174 ],\n", - " [ 1.279687 ],\n", - " [ 1.4004583 ],\n", - " [ 1.1357263 ],\n", - " [ 0.991143 ],\n", - " [ 1.7546796 ],\n", - " [ 1.8547517 ],\n", - " [ 2.5337794 ],\n", - " [ 2.6925254 ],\n", - " [ 3.1499314 ],\n", - " [ 3.0293155 ],\n", - " [ 3.4837644 ],\n", - " [ 3.7531657 ],\n", - " [ 3.8403203 ],\n", - " [ 3.7007172 ],\n", - " [ 2.7031083 ],\n", - " [ 3.0036361 ],\n", - " [ 2.3289661 ],\n", - " [ 1.6462032 ],\n", - " [ 1.4122865 ],\n", - " [ 1.1221862 ],\n", - " [ 0.47366259],\n", - " [ 0.43179724],\n", - " [ 0.1378061 ],\n", - " [ 0.10450058],\n", - " [ 0.05890007],\n", - " [-0.01922781],\n", - " [ 0.01361078],\n", - " [ 0.25001764],\n", - " [ 0.20379458],\n", - " [ 0.15912783],\n", - " [ 0.03804521],\n", - " [ 0.0112763 ],\n", - " [ 0.40020368],\n", - " [ 0.9962789 ],\n", - " [ 1.5427071 ],\n", - " [ 1.4130647 ],\n", - " [ 1.1237426 ],\n", - " [ 1.6356201 ],\n", - " [ 2.0203454 ],\n", - " [ 1.6363983 ],\n", - " [ 1.2048274 ],\n", - " [ 1.2031155 ],\n", - " [ 1.6057385 ],\n", - " [ 1.4756292 ],\n", - " [ 0.93324745],\n", - " [ 1.3648183 ],\n", - " [ 2.0363758 ],\n", - " [ 1.6476039 ],\n", - " [ 2.2405665 ],\n", - " [ 2.4416447 ],\n", - " [ 2.1408055 ],\n", - " [ 1.6493158 ],\n", - " [ 2.2284272 ],\n", - " [ 2.4018025 ],\n", - " [ 2.8567183 ],\n", - " [ 2.898895 ],\n", - " [ 3.9316769 ],\n", - " [ 3.660097 ],\n", - " [ 3.2076712 ],\n", - " [ 3.409839 ],\n", - " [ 3.2286818 ],\n", - " [ 3.0336733 ],\n", - " [ 2.8353965 ],\n", - " [ 2.9273758 ],\n", - " [ 2.1327126 ],\n", - " [ 1.6311067 ],\n", - " [ 1.6121196 ],\n", - " [ 0.8972962 ],\n", - " [ 0.5648636 ]], dtype=float32),\n", - " array([[ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0. , 0. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0.02083333, 0. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0.04166667, 0. ],\n", - " ...,\n", - " [ 1.0853493 , -0.6453928 , 1.0307775 , ..., 0. ,\n", - " 1.9166666 , 0. ],\n", - " [ 1.0853493 , -0.6453928 , 1.0307775 , ..., 0. ,\n", - " 1.9375 , 0. ],\n", - " [ 1.0853493 , -0.5313494 , 1.0912782 , ..., 0. ,\n", - " 1.9583334 , 0. ]], dtype=float32),\n", - " array([[ 1.9492349e-01],\n", - " [ 7.5397186e-02],\n", - " [ 2.3336489e-01],\n", - " [ 1.2053080e-01],\n", - " [ 2.2355998e-01],\n", - " [ 2.9982027e-01],\n", - " [ 1.5866096e-01],\n", - " [ 1.1866322e-01],\n", - " [ 1.0512313e-01],\n", - " [ 3.0122095e-01],\n", - " [ 2.1468890e-01],\n", - " [ 5.3949541e-01],\n", - " [ 8.2181406e-01],\n", - " [ 1.5501775e+00],\n", - " [ 1.8349863e+00],\n", - " [ 1.6644123e+00],\n", - " [ 2.1366036e+00],\n", - " [ 2.1674187e+00],\n", - " [ 1.9316344e+00],\n", - " [ 1.8812094e+00],\n", - " [ 2.2492819e+00],\n", - " [ 2.3697419e+00],\n", - " [ 1.8332744e+00],\n", - " [ 1.7370930e+00],\n", - " [ 2.1202619e+00],\n", - " [ 2.6394544e+00],\n", - " [ 2.0871119e+00],\n", - " [ 1.7694647e+00],\n", - " [ 2.0368426e+00],\n", - " [ 2.1297555e+00],\n", - " [ 2.0472701e+00],\n", - " [ 3.0395873e+00],\n", - " [ 3.2934251e+00],\n", - " [ 3.4733372e+00],\n", - " [ 3.8921461e+00],\n", - " [ 3.5867937e+00],\n", - " [ 3.4696019e+00],\n", - " [ 3.4269586e+00],\n", - " [ 2.8092501e+00],\n", - " [ 2.9440286e+00],\n", - " [ 2.4144087e+00],\n", - " [ 2.0331073e+00],\n", - " [ 2.2208011e+00],\n", - " [ 1.8822988e+00],\n", - " [ 1.5588930e+00],\n", - " [ 1.4409230e+00],\n", - " [ 1.1388389e+00],\n", - " [ 1.0885694e+00],\n", - " [ 5.5381370e-01],\n", - " [ 3.4310017e-02],\n", - " [ 1.3157757e-03],\n", - " [-1.2521403e-01],\n", - " [-7.3855065e-02],\n", - " [-1.2101193e-01],\n", - " [ 3.9912798e-02],\n", - " [ 1.2270970e-01],\n", - " [ 4.5204341e-02],\n", - " [-1.2677038e-01],\n", - " [-1.6115144e-02],\n", - " [ 2.1842413e-01],\n", - " [ 5.3249198e-01],\n", - " [ 4.2136979e-01],\n", - " [ 7.1224833e-01],\n", - " [ 1.4854342e+00],\n", - " [ 1.8214462e+00],\n", - " [ 1.6490046e+00],\n", - " [ 2.0604987e+00],\n", - " [ 2.0366869e+00],\n", - " [ 1.6323519e+00],\n", - " [ 1.3979683e+00],\n", - " [ 1.3878522e+00],\n", - " [ 1.4852785e+00],\n", - " [ 1.5033319e+00],\n", - " [ 1.9745893e+00],\n", - " [ 2.0606544e+00],\n", - " [ 1.8254926e+00],\n", - " [ 1.8941269e+00],\n", - " [ 2.4310615e+00],\n", - " [ 2.7108901e+00],\n", - " [ 2.6917472e+00],\n", - " [ 2.9974108e+00],\n", - " [ 3.7825804e+00],\n", - " [ 3.2772393e+00],\n", - " [ 3.5678065e+00],\n", - " [ 3.8865433e+00],\n", - " [ 3.7761993e+00],\n", - " [ 3.8535490e+00],\n", - " [ 3.9933076e+00],\n", - " [ 3.0651112e+00],\n", - " [ 2.7614708e+00],\n", - " [ 2.6290269e+00],\n", - " [ 2.4046037e+00],\n", - " [ 1.4166442e+00],\n", - " [ 1.4624003e+00],\n", - " [ 9.4772130e-01]], dtype=float32)]" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# we can treat it like an array\n", - "ds_train[0]\n", - "len(ds_train)\n", - "ds_train[-1]" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.427931Z", - "start_time": "2020-10-19T13:24:57.983800Z" - } - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
monthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholidayblocktsp_daysis_past
Date
2013-11-08 17:00:001.085349-0.873481.0307770.794583-0.9999620.500561-0.2051970.700950-0.3508090.160852-0.928594-0.347889-0.5393441.037935-0.1500440.0-0.1041671.0
2013-11-08 17:30:001.085349-0.873481.0307770.7945831.0000380.500561-0.2051970.700950-0.3508090.160852-0.928594-0.347889-0.5393441.037935-0.1500440.0-0.0833331.0
2013-11-08 18:00:001.085349-0.873481.0307770.939042-0.9999620.5005610.1769350.919905-0.3491120.139362-0.896675-0.4420380.0345631.037935-0.1500440.0-0.0625001.0
2013-11-08 18:30:001.085349-0.873481.0307770.9390421.0000380.5005610.1769350.919905-0.3491120.139362-0.896675-0.4420380.0345631.037935-0.1500440.0-0.0416671.0
2013-11-08 19:00:001.085349-0.873481.0307771.083500-0.9999620.5005610.1186440.952749-0.391543-0.048187-0.821312-0.5179190.2708770.680856-0.1500440.0-0.0208331.0
\n", - "
" - ], - "text/plain": [ - " month day week hour minute \\\n", - "Date \n", - "2013-11-08 17:00:00 1.085349 -0.87348 1.030777 0.794583 -0.999962 \n", - "2013-11-08 17:30:00 1.085349 -0.87348 1.030777 0.794583 1.000038 \n", - "2013-11-08 18:00:00 1.085349 -0.87348 1.030777 0.939042 -0.999962 \n", - "2013-11-08 18:30:00 1.085349 -0.87348 1.030777 0.939042 1.000038 \n", - "2013-11-08 19:00:00 1.085349 -0.87348 1.030777 1.083500 -0.999962 \n", - "\n", - " dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2013-11-08 17:00:00 0.500561 -0.205197 0.700950 -0.350809 \n", - "2013-11-08 17:30:00 0.500561 -0.205197 0.700950 -0.350809 \n", - "2013-11-08 18:00:00 0.500561 0.176935 0.919905 -0.349112 \n", - "2013-11-08 18:30:00 0.500561 0.176935 0.919905 -0.349112 \n", - "2013-11-08 19:00:00 0.500561 0.118644 0.952749 -0.391543 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2013-11-08 17:00:00 0.160852 -0.928594 -0.347889 -0.539344 \n", - "2013-11-08 17:30:00 0.160852 -0.928594 -0.347889 -0.539344 \n", - "2013-11-08 18:00:00 0.139362 -0.896675 -0.442038 0.034563 \n", - "2013-11-08 18:30:00 0.139362 -0.896675 -0.442038 0.034563 \n", - "2013-11-08 19:00:00 -0.048187 -0.821312 -0.517919 0.270877 \n", - "\n", - " humidity holiday block tsp_days is_past \n", - "Date \n", - "2013-11-08 17:00:00 1.037935 -0.150044 0.0 -0.104167 1.0 \n", - "2013-11-08 17:30:00 1.037935 -0.150044 0.0 -0.083333 1.0 \n", - "2013-11-08 18:00:00 1.037935 -0.150044 0.0 -0.062500 1.0 \n", - "2013-11-08 18:30:00 1.037935 -0.150044 0.0 -0.041667 1.0 \n", - "2013-11-08 19:00:00 0.680856 -0.150044 0.0 -0.020833 1.0 " - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# We can get rows\n", - "x_past, y_past, x_future, y_future = ds_train.get_rows(10)\n", - "\n", - "# Plot one instance, this is what the model sees\n", - "y_past['energy(kWh/hh)'].plot(label='past')\n", - "y_future['energy(kWh/hh)'].plot(ax=plt.gca(), label='future')\n", - "plt.legend()\n", - "plt.ylabel('energy(kWh/hh)')\n", - "\n", - "# Notice we've added on two new columns tsp (time since present) and is_past\n", - "x_past.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.507833Z", - "start_time": "2020-10-19T13:24:58.431771Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
monthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholidayblocktsp_daysis_past
Date
2013-11-10 17:00:001.085349-0.6453931.0307770.794583-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.8958330.0
2013-11-10 17:30:001.085349-0.6453931.0307770.7945831.0000381.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9166670.0
2013-11-10 18:00:001.085349-0.6453931.0307770.939042-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9375000.0
2013-11-10 18:30:001.085349-0.6453931.0307770.9390421.0000381.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9583330.0
2013-11-10 19:00:001.085349-0.6453931.0307771.083500-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9791670.0
\n", - "
" - ], - "text/plain": [ - " month day week hour minute \\\n", - "Date \n", - "2013-11-10 17:00:00 1.085349 -0.645393 1.030777 0.794583 -0.999962 \n", - "2013-11-10 17:30:00 1.085349 -0.645393 1.030777 0.794583 1.000038 \n", - "2013-11-10 18:00:00 1.085349 -0.645393 1.030777 0.939042 -0.999962 \n", - "2013-11-10 18:30:00 1.085349 -0.645393 1.030777 0.939042 1.000038 \n", - "2013-11-10 19:00:00 1.085349 -0.645393 1.030777 1.083500 -0.999962 \n", - "\n", - " dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2013-11-10 17:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 17:30:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 18:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 18:30:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 19:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2013-11-10 17:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 17:30:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 18:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 18:30:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 19:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "\n", - " humidity holiday block tsp_days is_past \n", - "Date \n", - "2013-11-10 17:00:00 0.609441 -0.150044 0.0 1.895833 0.0 \n", - "2013-11-10 17:30:00 0.609441 -0.150044 0.0 1.916667 0.0 \n", - "2013-11-10 18:00:00 0.609441 -0.150044 0.0 1.937500 0.0 \n", - "2013-11-10 18:30:00 0.609441 -0.150044 0.0 1.958333 0.0 \n", - "2013-11-10 19:00:00 0.609441 -0.150044 0.0 1.979167 0.0 " - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Notice we've hidden some future columns to prevent cheating\n", - "x_future.tail()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Plot helpers" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.590885Z", - "start_time": "2020-10-19T13:24:58.512365Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "def plot_prediction(ds_preds, i):\n", - " \"\"\"Plot a prediction into the future, at a single point in time.\"\"\"\n", - " d = ds_preds.isel(t_source=i)\n", - "\n", - " # Get arrays\n", - " xf = d.t_target\n", - " yp = d.y_pred\n", - " s = d.y_pred_std\n", - " yt = d.y_true\n", - " now = d.t_source.squeeze()\n", - " \n", - " \n", - " plt.figure(figsize=(12, 4))\n", - " \n", - " plt.scatter(xf, yt, label='true', c='k', s=6)\n", - " ylim = plt.ylim()\n", - "\n", - " # plot prediction\n", - " plt.fill_between(xf, yp-2*s, yp+2*s, alpha=0.25,\n", - " facecolor=\"b\",\n", - " interpolate=True,\n", - " label=\"2 std\",)\n", - " plt.plot(xf, yp, label='pred', c='b')\n", - "\n", - " # plot true\n", - " plt.scatter(\n", - " d.t_past,\n", - " d.y_past,\n", - " c='k',\n", - " s=6\n", - " )\n", - " \n", - " # plot a red line for now\n", - " plt.vlines(x=now, ymin=0, ymax=1, label='now', color='r')\n", - " plt.ylim(*ylim)\n", - "\n", - " now=pd.Timestamp(now.values)\n", - " plt.title(f'Prediction NLL={d.nll.mean().item():2.2g}')\n", - " plt.xlabel(f'{now.date()}')\n", - " plt.ylabel('energy(kWh/hh)')\n", - " plt.legend()\n", - " plt.xticks(rotation=45)\n", - " plt.show()\n", - " \n", - "def plot_performance(ds_preds, full=False):\n", - " \"\"\"Multiple plots using xr_preds\"\"\"\n", - " plot_prediction(ds_preds, 24)\n", - "\n", - " ds_preds.mean('t_source').plot.scatter('t_ahead_hours', 'nll') # Mean over all predictions\n", - " n = len(ds_preds.t_source)\n", - " plt.ylabel('Negative Log Likelihood (lower is better)')\n", - " plt.xlabel('Hours ahead')\n", - " plt.title(f'NLL vs time ahead (no. samples={n})')\n", - " plt.show()\n", - "\n", - " # Make a plot of the NLL over time. Does this solution get worse with time?\n", - " if full:\n", - " d = ds_preds.mean('t_ahead').groupby('t_source').mean().plot.scatter('t_source', 'nll')\n", - " plt.xticks(rotation=45)\n", - " plt.title('NLL over source time (lower is better)')\n", - " plt.show()\n", - "\n", - " # A scatter plot is easy with xarray\n", - " if full:\n", - " plt.figure(figsize=(5, 5))\n", - " ds_preds.plot.scatter('y_true', 'y_pred', s=.01)\n", - " plt.show()\n", - " \n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-18T11:37:24.369849Z", - "start_time": "2020-10-18T11:37:21.316103Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.657541Z", - "start_time": "2020-10-19T13:24:58.597738Z" - } - }, - "outputs": [], - "source": [ - "def plot_hist(trainer):\n", - " try:\n", - " df_hist = pd.read_csv(trainer.logger.experiment.metrics_file_path)\n", - " df_hist['epoch'] = df_hist['epoch'].ffill()\n", - " df_histe = df_hist.set_index('epoch').groupby('epoch').mean()\n", - " if len(df_histe)>1:\n", - " df_histe[['loss/train', 'loss/val']].plot(title='history')\n", - " return df_histe\n", - " except Exception:\n", - " pass" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Lightning" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.723923Z", - "start_time": "2020-10-19T13:24:58.666993Z" - } - }, - "outputs": [], - "source": [ - "import pytorch_lightning as pl\n", - "\n", - "class PL_MODEL(pl.LightningModule):\n", - " def __init__(self, model, lr=3e-4, patience=2):\n", - " super().__init__()\n", - " self._model = model\n", - " self.lr = lr\n", - " self.patience = patience\n", - "\n", - " def forward(self, x_past, y_past, x_future, y_future=None):\n", - " \"\"\"Eval/Predict\"\"\"\n", - " y_dist, extra = self._model(x_past, y_past, x_future, y_future)\n", - " return y_dist, extra\n", - "\n", - " def training_step(self, batch, batch_idx, phase='train'):\n", - " x_past, y_past, x_future, y_future = batch\n", - " y_dist, extra = self.forward(*batch)\n", - " loss = -y_dist.log_prob(y_future).mean()\n", - " self.log_dict({f'loss/{phase}':loss})\n", - " if ('loss' in extra) and (phase=='train'):\n", - " # some models have a special loss\n", - " loss = extra['loss']\n", - " self.log_dict({f'model_loss/{phase}':loss})\n", - " return loss\n", - "\n", - " def validation_step(self, batch, batch_idx):\n", - " return self.training_step(batch, batch_idx, phase='val')\n", - "\n", - " def configure_optimizers(self):\n", - " optim = torch.optim.Adam(self.parameters(), lr=self.lr)\n", - " scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(\n", - " optim,\n", - " patience=self.patience,\n", - " verbose=True,\n", - " min_lr=1e-7,\n", - " )\n", - " return {'optimizer': optim, 'lr_scheduler': scheduler, 'monitor': 'loss/val'}" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.790267Z", - "start_time": "2020-10-19T13:24:58.727814Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "# # Run\n", - "from torch.utils.data import DataLoader\n", - "from pytorch_lightning.loggers import CSVLogger\n", - "from pytorch_lightning.callbacks.early_stopping import EarlyStopping" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:58.857131Z", - "start_time": "2020-10-19T13:24:58.794401Z" - } - }, - "outputs": [], - "source": [ - "# Init data\n", - "x_past, y_past, x_future, y_future = ds_train.get_rows(10)\n", - "input_size = x_past.shape[-1]\n", - "output_size = y_future.shape[-1]\n", - "\n", - "dl_train = DataLoader(ds_train,\n", - " batch_size=batch_size,\n", - " shuffle=True,\n", - " pin_memory=num_workers==0,\n", - " num_workers=num_workers)\n", - "dl_test = DataLoader(ds_test, batch_size=batch_size, num_workers=num_workers)" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T22:47:41.043195Z", - "start_time": "2020-10-19T22:47:40.785325Z" - }, - "lines_to_end_of_cell_marker": 2, - "lines_to_next_cell": 0 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "from seq2seq_time.models.lstm_seq2seq import LSTMSeq2Seq\n", - "from seq2seq_time.models.lstm_seq import LSTMSeq\n", - "from seq2seq_time.models.lstm import LSTM\n", - "from seq2seq_time.models.baseline import BaselineLast\n", - "from seq2seq_time.models.transformer import Transformer\n", - "from seq2seq_time.models.transformer_seq2seq import TransformerSeq2Seq\n", - "from seq2seq_time.models.transformer_seq import TransformerSeq\n", - "from seq2seq_time.models.neural_process import RANP\n", - "# ## Plots" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:24:59.048622Z", - "start_time": "2020-10-19T13:24:58.942111Z" - } - }, - "outputs": [], - "source": [ - "models = [\n", - " RANP(input_size,\n", - " output_size),\n", - " LSTM(input_size,\n", - " output_size,\n", - " hidden_size=80,\n", - " lstm_layers=3,\n", - " lstm_dropout=0.3),\n", - "\n", - " LSTMSeq2Seq(input_size,\n", - " output_size,\n", - " hidden_size=64,\n", - " lstm_layers=2,\n", - " lstm_dropout=0.25),\n", - " TransformerSeq2Seq(input_size,\n", - " output_size,\n", - " hidden_size=64,\n", - " nhead=8,\n", - " nlayers=4,\n", - " attention_dropout=0.3),\n", - " Transformer(input_size,\n", - " output_size,\n", - " attention_dropout=0.3,\n", - " nhead=8,\n", - " nlayers=6,\n", - " hidden_size=64),\n", - " TransformerSeq(input_size,\n", - " output_size),\n", - " LSTMSeq(input_size,\n", - " output_size),\n", - " \n", - "]" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:25:07.018615Z", - "start_time": "2020-10-19T13:24:59.052324Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "----------------------------------------\n", - "0 | _model | BaselineLast | 1 \n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "1c387b6aa755410c9e6007c8b8cd8be1", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "None\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "baseline nll: 2.3\n" - ] - } - ], - "source": [ - "# Baseline model\n", - "pt_model = BaselineLast()\n", - "model = PL_MODEL(pt_model).to(device)\n", - "trainer = pl.Trainer(gpus=1,\n", - " max_epochs=1, \n", - " limit_train_batches=0.01,\n", - " logger=CSVLogger(\"logs\",\n", - " name=type(pt_model).__name__),\n", - " )\n", - "trainer.fit(model, dl_train, dl_test)\n", - "print(plot_hist(trainer))\n", - "ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*8,\n", - " device=device,\n", - " scaler=output_scaler)\n", - "print(f'baseline nll: {ds_preds.nll.mean().item():2.2g}')" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.536705Z", - "start_time": "2020-10-19T13:25:07.022594Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n", - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "Using native 16bit precision.\n", - "\n", - " | Name | Type | Params\n", - "--------------------------------\n", - "0 | _model | RANP | 58 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "RANP\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "b87355a7337a4dac80f02f4456f9ce4e", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 8: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f423c8371c844650b6cfe628339412c3", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value=''), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RANP\n", - "mean_NLL -0.03\n", - " loss/train model_loss/train step loss/val\n", - "epoch \n", - "0.0 0.156459 0.156764 522.650000 0.053744\n", - "1.0 -0.129233 -0.128922 1473.800000 -0.003657\n", - "2.0 -0.164016 -0.163826 2447.523810 -0.012628\n", - "3.0 -0.174735 -0.174592 3423.600000 -0.031114\n", - "4.0 -0.197001 -0.196890 4397.333333 -0.043655\n", - "5.0 -0.207953 -0.207857 5373.400000 -0.041250\n", - "6.0 -0.225731 -0.225642 6347.142857 -0.038535\n", - "7.0 -0.233150 -0.233063 7323.200000 -0.024135\n", - "8.0 -0.247012 -0.246924 8296.952381 -0.033753\n", - "mean_NLL 0.55\n" - ] - }, - { - "data": { - "image/png": "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URS8+OKLWLRoEfbv34/Dhw/rXVLU+vnnn5GQkBD47QWd3NNPP425c+fikUcewRdffIGdO3fqXVLU8vl8OHjwIMaOHYsXXngBFosFK1as0LusqOf1evHzzz8jIyND71KiWllZGTZu3IiFCxfitddeg9vtxrp16/QuK4Bh2c/hcCA/Pz/wPj8/P6p+BUBtg9frxbx583DRRRdh8ODBepfTatjtdpx99tnYunWr3qVErd27d2PTpk24++67sWDBAuzYsQOvvPKK3mVFteTkZABAQkICBg0ahH379ulcUfRyOBxwOByB3+5kZGTg4MGDOlcV/bZs2YLu3bsjMTFR71Ki2vbt25Gamor4+HgYjUYMHjwYe/bs0busAIZlv549eyI7Oxu5ubnwer1Yv349Bg4cqHdZ1IZIKbFo0SJ06tQJEydO1LucqFdSUgKXywVAezLG9u3b0alTJ52ril7XXXcdFi1ahIULF2LmzJno27cvZsyYoXdZUcvtdgemq7jdbmzbtg1du3bVuarolZiYCIfDgaysLABauOHNySfHKRgN43Q6sXfvXng8Hkgpo+7ve85Z9jMYDLj11lvx7LPPQlVVjBw5El26dNG7rKi2YMEC7Ny5E6WlpZg+fTomT54cuPmD6tq9ezfWrVuHrl27YtasWQCAa6+9FgMGDNC5suhUWFiIhQsXQlVVSClxwQUX4Pzzz9e7LGojiouL8be//Q2ANsXgwgsvRP/+/fUtKsrdeuuteOWVV+D1epGamoq77rpL75KimsfjwbZt2zBt2jS9S4l6vXv3RkZGBh566CEYDAZ069Ytqu4h4Ap+RERERERhcBoGEREREVEYDMtERERERGEwLBMRERERhcGwTEREREQUBsMyEREREVEYDMtERO1Ubm4uJk+eDJ/Pp3cpRERRi2GZiIiIiCgMhmUiIiIiojC4gh8RURQpKCjAG2+8gV27dsFqtWLChAkYP348li9fjiNHjkBRFGzZsgUdO3bEnXfeiW7dugEAjh49iiVLluC3335DcnIyrrvuOgwcOBCAtlz4P//5T/z4449wuVzo2rUr5syZEzjnt99+i/fffx+VlZWYMGECrrjiCj0unYgoKnFkmYgoSqiqirlz56Jbt2547bXX8Pjjj2PlypXYunUrAGDTpk244IIL8MYbb2Do0KF48cUX4fV64fV6MXfuXPTr1w9LliwJLEuclZUFAFi2bBkOHDiAZ555Bm+++SZuuOEGCCEC5/3111/x8ssvY86cOfjggw9w9OhRPS6fiCgqMSwTEUWJ/fv3o6SkBFdddRWMRiM6dOiAUaNGYf369QCAHj16ICMjA0ajERMnTkRVVRX27t2LvXv3wu12Y9KkSTAajejbty8GDBiA7777Dqqq4uuvv8bUqVORnJwMRVFwxhlnwGQyBc579dVXw2w2o1u3bjjttNNw6NAhvbqAiCjqcBoGEVGUOH78OAoLCzF16tTANlVVcdZZZ8HpdMLhcAS2K4oCh8OBwsJCAIDT6YSi1Ix/pKSkoKCgAKWlpaiqqkJaWlrY8yYmJgZeWywWuN3uprsoIqJWjmGZiChKOJ1OpKam4pVXXqnz2fLly5Gfnx94r6oq8vPzkZSUBADIy8uDqqqBwJyXl4eOHTsiLi4OJpMJOTk5gfnNRETUcJyGQUQUJXr16gWbzYYVK1agsrISqqri8OHD2LdvHwDgwIED2LBhA3w+H1auXAmTyYTevXujd+/esFqt+OSTT+D1epGZmYmff/4ZQ4cOhaIoGDlyJJYtW4aCggKoqoo9e/agqqpK56slImodhJRS6l0EERFpCgoKsGzZMmRmZsLr9SI9PR3XXHMNfv3115CnYaSlpWH69Ono0aMHAODIkSMhT8O49tpr8Yc//AGA9jSMf/zjH/jhhx/gdrvRrVs3PProoygqKsI999yD9957DwaDAQDw5JNP4qKLLsKoUaN06wMiomjCsExE1AosX74cOTk5mDFjht6lEBG1K5yGQUREREQUBsMyEREREVEYnIZBRERERBQGR5aJiIiIiMJgWCYiIiIiCoNhmYiIiIgoDIZlIiIiIqIwGJaJiIiIiMJgWCYiIiIiCuP/A1qdZjD+jbY5AAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAtoAAAECCAYAAADAa3DsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAABMDElEQVR4nO3deVxU1fsH8M8wiCPIOiAoEopLgoimpkkqGahli2QulVpk9W2zzF8umLjnnpK7fZNcWr5pqWllZWppphZqpLkghEsGyO6CbDP3/P4gJkZm4M7IDMPweb9evGTOvXfuM3gGHg7nPEchhBAgIiIiIqJa5VDXARARERER2SMm2kREREREFsBEm4iIiIjIAphoExERERFZABNtIiIiIiILYKJNRERERGQBTLSJiIiIiCyAiTYRERERkQU4VndQq9Xi6NGjOH78OC5evIjCwkK4uLggMDAQd911F+6++24olUprxUpEREREVG8ojO0M+f3332Pbtm1o2bIlgoOD0bJlS6hUKhQXF+Py5cs4c+YMLl++jMceewwDBgywdtxERERERDbN6Ih2RkYG5s+fDw8PjyrHevToAQDIz8/Hl19+abHgiIiIiIjqK6Mj2hUkScLp06fRoUMHODpWO9OEiIiIiIj+UeNiSAcHByxatIhJNhERERGRCWRVHQkODsa5c+csHQsRERERkd2QNUzt4+OD+fPno3v37lCr1VAoFLpjI0aMsFhwRERERET1laxEu7S0FHfffTcAIC8vz6IBERERERHZgxoXQxIRERERkelkr3C8fPkyjhw5gqtXr+K5555Deno6ysrKEBgYaMn4iIiIiIjqJVmLIQ8fPowZM2YgLy8PBw4cAAAUFRVh06ZNFg2OiIiIiKi+kjWivWXLFkybNg2tWrXC4cOHAQCBgYG4cOGCJWMjIiIiIqq3ZI1oX716tcoUEYVCoVd9hIiIiIiI/iUr0Q4KCtJNGanw888/o23bthYJioiIiIiovpNVdeTvv//G22+/jWbNmiElJQUdO3ZEeno64uLi0Lx5c2vESURERERUr8gu71dSUoJjx44hJycHarUa3bp1g0qlsnR8RERERET1kqxE+4MPPsCYMWOqtG/YsAExMTGWiIuIiIiIqF6TNUd7//79BttvnbdNRERERETlqi3vt2/fPgCAVqvVfV4hKysLrq6ulouMiIiI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tm1rkaCIiBq6du3aQaVSYefOndBoNDh16hSOHTuGe++9FwDQqlUr/PrrrygpKUFmZib27dtX7fOlpqYiJSUFGo0GjRs3RqNGjfRGyytoNBqUlZXBzc0NSqUSv/32W5UyhMY4ODggMjISGzZs0O2tkJeXh6SkJABAcXExnJyc4OzsjBs3buCzzz7TXevj44M2bdpgy5Yt0Gg0OHv2LI4dOybrvkREtkrWiPazzz6Lt99+G/v27UNJSQnmzp2L9PR0xMXFWTo+IqIGydHREZMmTcK6deuwfft2eHl5YezYsfD39wcAPPTQQ/jzzz/xwgsvIDAwEL1798bJkyeNPl9RURE2btyIK1euwMnJCZ07d8ajjz5a5bwmTZrg2WefRXx8PMrKytCtWzddpRM5Ro4cic8//xxTp07F9evX4eXlhf79+6NLly4YNGgQli9fjueeew5eXl54+OGHkZiYqLv29ddfx6pVq/Dss8+iffv26Nu3r26KCRFRfaQQQgg5J5aUlODYsWPIycmBWq1Gt27d9ObSERERERHRv2Qn2kREREREJF+1U0dmzZpV7cUKhQLTp0+v1YCIiIiIiOxBtYl2nz59DLbn5eXhm2++0VvxTkRERERE/zJp6sj169exfft27N27F+Hh4Rg6dKhenVYiIiIiIionK9G+efMmdu7cie+++w5du3bFsGHD4OfnZ434iIiIiIjqpWoT7dLSUnz99df46quvEBISguHDhyMgIMCa8RERERER1UvVJtovvPACJEnCo48+ijZt2hg8JzQ01GLBERERERHVV9UuhnRycgIA7N692+BxhUKBlStX1n5URERERET1HOtoExERERFZgENdB0BEREREZI+YaBMRERERWQATbSIiIiIiC2CiTURERERkAUy0iYiIiIgsgIk2EREREZEF/D/PE2Sm9cvX9QAAAABJRU5ErkJggg==\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "Using native 16bit precision.\n", - "\n", - " | Name | Type | Params\n", - "--------------------------------\n", - "0 | _model | LSTM | 136 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "LSTM\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "36d4fcd71dc440779f14f4e689bdae33", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 6: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f5c4c38fb93042d28d6c0760ad8fc151", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value=''), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=3.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "LSTM\n", - "mean_NLL 0.35\n", - " loss/train step loss/val\n", - "epoch \n", - "0.0 0.225341 522.650000 0.327770\n", - "1.0 -0.098921 1473.800000 0.319602\n", - "2.0 -0.172654 2447.523810 0.228442\n", - "3.0 -0.213030 3423.600000 0.382066\n", - "4.0 -0.225637 4397.333333 0.311360\n", - "5.0 -0.257630 5373.400000 0.379025\n", - "6.0 -0.264004 6347.142857 0.347051\n", - "mean_NLL 1.38\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAssAAADkCAYAAABubWkRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAABAsUlEQVR4nO3de3wTdb4//tdM0qSXJG2alJbeKHcRVMSiFeS2rbhedq3r/XZEzsqichCFPQsoiqvsgoqA5wcHRcRlXXdxvXDW88UjVIRyEcELgoBKgZaWtpQ2bZNekjaZ+f2RNG3aBoppO9P29Xw8+mhnMpn5pB+Lr3zyns9HkGVZBhERERERtSEq3QAiIiIiIrViWCYiIiIiCoJhmYiIiIgoCIZlIiIiIqIgGJaJiIiIiIJgWCYiIiIiCoJhmYiom02ePBm//e1vgz6+ePFiDBkypBtbREREwTAsExGpzLx587Bv374OHz9kyBAsXry46xpERNSHaZVuABERBTIYDDAYDN1+XUmSIMsyNBpNt1+biEitOLJMRKSQF154AQkJCYiNjcW0adNQW1sLoG0ZRlFREW6//XZYrVZERERg0KBBePnllwF4SzpOnDiB559/HoIgQBAE5OfnAwD27duHiRMnIiIiAmazGffddx/Kysr85226zqZNm3DJJZdAp9NhzZo10Gg0KCwsDGjrX/7yFxiNRjgcji7+rRARqQvDMhGRAt5//33YbDbs2LED7777LjZv3oyXXnqp3WMfe+wxVFdXIycnB8eOHcP69euRnJwMAPjwww+RlpaGuXPnoqSkBCUlJUhJSUFpaSmmTp2K5ORk7N+/Hx9//DG+//573H777QHnLi4uxpo1a/D222/j6NGjmDZtGoYOHYq33nor4Lg333wT99xzD4xGY9f8QoiIVIplGERECkhNTcWKFSsAAJdccgnuuecebN26Fc8//3ybYwsKCnDbbbdh9OjRAIC0tDT/Y7GxsdBoNDAYDEhISPDvX716NUwmE95++23odDoAwF//+leMHj0aubm5mDhxIgDA6XTir3/9K1JTU/3PnTFjBlatWoVFixZBFEX8+OOP2L17N1599dXO/jUQEakeR5aJiBTQFHybJCUl4ezZs+0eO2fOHPzpT3/CNddcgz/84Q/Izc294PmPHDmCjIwMf1AGgCuuuALR0dE4cuSIf198fHxA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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "Using native 16bit precision.\n", - "\n", - " | Name | Type | Params\n", - "---------------------------------------\n", - "0 | _model | LSTMSeq2Seq | 109 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "LSTMSeq2Seq\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "a735a93239ca4d998035eace286c5789", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "ename": "TypeError", - "evalue": "cannot unpack non-iterable Normal object", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 23\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;31m# Train\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 25\u001b[0;31m \u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdl_train\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdl_test\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 26\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 27\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mfit\u001b[0;34m(self, model, train_dataloader, val_dataloaders, datamodule)\u001b[0m\n\u001b[1;32m 438\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcall_hook\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'on_fit_start'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 439\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 440\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 441\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mteardown\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 442\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36mtrain\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 52\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 53\u001b[0m \u001b[0;31m# train or test\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 54\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain_or_test\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 55\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresults\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 56\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/accelerator.py\u001b[0m in \u001b[0;36mtrain_or_test\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 64\u001b[0m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_test\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 66\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 67\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresults\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 68\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mtrain\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 460\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 461\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mtrain\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 462\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_sanity_check\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_model\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 463\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 464\u001b[0m \u001b[0;31m# enable train mode\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mrun_sanity_check\u001b[0;34m(self, ref_model)\u001b[0m\n\u001b[1;32m 646\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 647\u001b[0m \u001b[0;31m# run eval step\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 648\u001b[0;31m \u001b[0m_\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0meval_results\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_evaluation\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtest_mode\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mFalse\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmax_batches\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnum_sanity_val_batches\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 649\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 650\u001b[0m \u001b[0;31m# allow no returns from eval\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mrun_evaluation\u001b[0;34m(self, test_mode, max_batches)\u001b[0m\n\u001b[1;32m 566\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 567\u001b[0m \u001b[0;31m# lightning module methods\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 568\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mevaluation_loop\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mevaluation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtest_mode\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdataloader_idx\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 569\u001b[0m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mevaluation_loop\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mevaluation_step_end\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0moutput\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 570\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/evaluation_loop.py\u001b[0m in \u001b[0;36mevaluation_step\u001b[0;34m(self, test_mode, batch, batch_idx, dataloader_idx)\u001b[0m\n\u001b[1;32m 169\u001b[0m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtest_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 170\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 171\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalidation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 172\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 173\u001b[0m \u001b[0;31m# track batch size for weighted average\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36mvalidation_step\u001b[0;34m(self, args)\u001b[0m\n\u001b[1;32m 74\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mamp_backend\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mAMPType\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mNATIVE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 75\u001b[0m \u001b[0;32mwith\u001b[0m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcuda\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mamp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mautocast\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 76\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__validation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 77\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 78\u001b[0m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__validation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36m__validation_step\u001b[0;34m(self, args)\u001b[0m\n\u001b[1;32m 84\u001b[0m \u001b[0mbatch\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_device\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbatch\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 85\u001b[0m \u001b[0margs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 86\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalidation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 87\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0moutput\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 88\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m\u001b[0m in \u001b[0;36mvalidation_step\u001b[0;34m(self, batch, batch_idx)\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 26\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mvalidation_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 27\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtraining_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbatch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mphase\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'val'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 28\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 29\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mconfigure_optimizers\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m\u001b[0m in \u001b[0;36mtraining_step\u001b[0;34m(self, batch, batch_idx, phase)\u001b[0m\n\u001b[1;32m 15\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mtraining_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mphase\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'train'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0mx_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_future\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_future\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 17\u001b[0;31m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mbatch\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 18\u001b[0m \u001b[0mloss\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m-\u001b[0m\u001b[0my_dist\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlog_prob\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0my_future\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlog_dict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m{\u001b[0m\u001b[0;34mf'loss/{phase}'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0mloss\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, x_past, y_past, x_future, y_future)\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_future\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_future\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;34m\"\"\"Eval/Predict\"\"\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 12\u001b[0;31m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_model\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_future\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_future\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 13\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 14\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mTypeError\u001b[0m: cannot unpack non-iterable Normal object" - ] - } - ], - "source": [ - "for pt_model in models:\n", - " name = type(pt_model).__name__\n", - " print(name)\n", - "\n", - " # Wrap in lightning\n", - " patience = 2\n", - " model = PL_MODEL(pt_model, patience=patience, lr=3e-4).to(device)\n", - "\n", - " # Trainer \n", - " trainer = pl.Trainer(gpus=1,\n", - " min_epochs=2,\n", - " max_epochs=10,\n", - " amp_level='O1',\n", - " precision=16,\n", - " gradient_clip_val=1,\n", - " logger=CSVLogger(\"logs\",\n", - " name=type(pt_model).__name__),\n", - " callbacks=[\n", - " EarlyStopping(monitor='loss/val', patience=patience*2),\n", - "# PrintTableMetricsCallback2()\n", - " ],\n", - " )\n", - "\n", - " # Train\n", - " trainer.fit(model, dl_train, dl_test)\n", - "\n", - "\n", - "\n", - " ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*8,\n", - " device=device,\n", - " scaler=output_scaler)\n", - " \n", - " print(name)\n", - " print(f'mean_NLL {ds_predss.nll.mean().item():2.2f}')\n", - " \n", - " # Performance\n", - " ds_preds = ds_predss.isel(block=0)\n", - " print(plot_hist(trainer))\n", - " plot_performance(ds_preds)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.542432Z", - "start_time": "2020-10-19T13:24:29.200Z" - } - }, - "outputs": [], - "source": [ - "# ds_preds = predict(model.to(device),\n", - "# ds_test.datasets[0],\n", - "# batch_size*8,\n", - "# device=device,\n", - "# scaler=output_scaler)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.545596Z", - "start_time": "2020-10-19T13:24:29.200Z" - } - }, - "outputs": [], - "source": [ - "ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*8,\n", - " device=device,\n", - " scaler=output_scaler)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.548857Z", - "start_time": "2020-10-19T13:24:29.200Z" - } - }, - "outputs": [], - "source": [ - "ds_pred_block = ds_predss.isel(block=1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# holoviews pred" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.555408Z", - "start_time": "2020-10-19T13:24:29.200Z" - } - }, - "outputs": [], - "source": [ - "import holoviews as hv\n", - "from holoviews import opts" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.558831Z", - "start_time": "2020-10-19T13:24:29.200Z" - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "def plot_prediction_now(t_source):\n", - " \"\"\"Plot predictions with holoviews\"\"\"\n", - "\n", - " # Let us pass in an int\n", - " if isinstance(t_source, int):\n", - " t_source = ds_pred_block.t_source[t_source].to_pandas()\n", - "\n", - " d = ds_pred_block.sel(t_source=t_source)\n", - "\n", - " # Sometimes there are duplicate times, take the first\n", - " if len(d.t_source.shape) and d.t_source.shape[0] > 0:\n", - " d = d.isel(t_source=0)\n", - " if len(d.t_source.shape) and d.t_source.shape[0] == 0:\n", - " return None\n", - "\n", - " now = d.t_source.to_pandas()\n", - "\n", - " # Plot true\n", - " x = np.concatenate([d.t_past, d.t_target])\n", - " yt = np.concatenate([d.y_past, d.y_true])\n", - " p = hv.Scatter({\n", - " 'x': x,\n", - " 'y': yt\n", - " }, label='true').opts(color='black')\n", - "\n", - " # Get arrays\n", - " xf = d.t_target.values\n", - " yp = d.y_pred\n", - " s = d.y_pred_std\n", - " p *= hv.Curve({\n", - " 'x': xf,\n", - " 'y': yp\n", - " }, label='pred').opts(color='blue')\n", - " p *= hv.Area((xf, yp - 2 * s, yp + 2 * s),\n", - " vdims=['y', 'y2'],\n", - " label='2*std').opts(alpha=0.5, line_width=0)\n", - "\n", - " # plot now line\n", - " p *= hv.VLine(now, label='now').opts(color='red', framewise=True)\n", - " return p.opts(title=f'Prediction at {now}. NLL={d.nll.mean().item():2.2f}')\n", - "\n", - "\n", - "dmap_pred = (hv.DynamicMap(plot_prediction_now, kdims=['t_source'])\n", - " .redim.values(t_source=ds_pred_block.t_source.to_pandas())\n", - " .opts(width=800,\n", - " height=300, \n", - " ))\n", - "dmap_pred" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.561774Z", - "start_time": "2020-10-19T13:24:29.300Z" - } - }, - "outputs": [], - "source": [ - "d = ds_preds.mean(['t_source', 'block'])['nll'].groupby('t_ahead_hours').mean()\n", - "nll_vs_tahead = hv.Curve((d.t_ahead_hours, d)).redim(x='hours ahead', y='nll').opts(width=800)\n", - "nll_vs_tahead" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.564734Z", - "start_time": "2020-10-19T13:24:29.300Z" - } - }, - "outputs": [], - "source": [ - "# def plot_predictions_vs_time(it_ahead):\n", - "# \"\"\"Plot predictions vs time with holoviews\"\"\"\n", - "\n", - "# d = ds_pred_block.isel(t_ahead=it_ahead).groupby('t_source').first()\n", - "# # print(d)\n", - "\n", - "# p = hv.Scatter({\n", - "# 'x': d.t_source,\n", - "# 'y': d.y_true\n", - "# }, label='true').opts(color='black')\n", - "\n", - "# # Get arrays\n", - "# xf = d.t_source.values\n", - "# yp = d.y_pred\n", - "# s = d.y_pred_std\n", - "# p *= hv.Curve({\n", - "# 'x': xf,\n", - "# 'y': yp\n", - "# }, label='pred').opts(color='blue')\n", - "# p *= hv.Area((xf, yp - 2 * s, yp + 2 * s),\n", - "# vdims=['y', 'y2'],\n", - "# label='2*std').opts(alpha=0.5, line_width=0)\n", - "\n", - "\n", - "# return p.opts(title=f'Prediction at {it_ahead * pd.Timedelta(freq)} ahead. NLL={d.nll.mean().item():2.2f}')\n", - "\n", - "\n", - "# dmap_preds = (hv.DynamicMap(plot_predictions_vs_time, kdims=['it_ahead'])\n", - "# .redim.values(it_ahead=range(ds_pred_block.t_ahead.shape[0]))\n", - "# .opts(width=800,\n", - "# height=300, \n", - "# ))\n", - "# dmap_preds\n", - "# # TODO fixme" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:15:31.423090Z", - "start_time": "2020-10-19T13:15:31.260955Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.568851Z", - "start_time": "2020-10-19T13:24:29.300Z" - } - }, - "outputs": [], - "source": [ - "# d = ds_preds.mean(['t_ahead', 'block'])['nll'].groupby('t_source').mean()\n", - "# nll_vs_time = hv.Curve(d).opts(width=800)\n", - "# nll_vs_time" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.572004Z", - "start_time": "2020-10-19T13:24:29.300Z" - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "# true_vs_pred = hv.Scatter((ds_preds.y_true, ds_preds.y_pred))\n", - "# dynspread(datashade(true_vs_pred))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Summarize experiments" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# LR finder" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T13:53:20.574629Z", - "start_time": "2020-10-19T13:24:29.300Z" - } - }, - "outputs": [], - "source": [ - "\n", - "# # Run learning rate finder\n", - "# lr_finder = trainer.tuner.lr_find(model)\n", - "\n", - "# # Results can be found in\n", - "# lr_finder.results\n", - "\n", - "# # Plot with\n", - "# fig = lr_finder.plot(suggest=True)\n", - "# fig.show()\n", - "\n", - "# # Pick point based on plot, or get suggestion\n", - "# new_lr = lr_finder.suggestion()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "jupytext": { - "encoding": "# -*- coding: utf-8 -*-", - "formats": "ipynb,py:light" - }, - "kernelspec": { - "display_name": "seq2seq-time", - "language": "python", - "name": "seq2seq-time" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.8" - }, - "toc": { - "base_numbering": 1, - "nav_menu": {}, - "number_sections": true, - "sideBar": true, - "skip_h1_title": false, - "title_cell": "Table of Contents", - "title_sidebar": "Contents", - "toc_cell": false, - "toc_position": { - "height": "calc(100% - 180px)", - "left": "10px", - "top": "150px", - "width": "307.2px" - }, - "toc_section_display": true, - "toc_window_display": true - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.py b/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.py deleted file mode 100644 index 5194d09..0000000 --- a/notebooks/02.0-mike-RNN_Timeseries_Seq2Seq.py +++ /dev/null @@ -1,725 +0,0 @@ -# -*- coding: utf-8 -*- -# --- -# jupyter: -# jupytext: -# formats: ipynb,py:light -# text_representation: -# extension: .py -# format_name: light -# format_version: '1.5' -# jupytext_version: 1.6.0 -# kernelspec: -# display_name: seq2seq-time -# language: python -# name: seq2seq-time -# --- - -# # Sequence to Sequence Models for Timeseries Regression -# -# -# In this notebook we are going to tackle a harder problem: -# - predicting the future on a timeseries -# - using an LSTM -# - with rough uncertainty (uncalibrated) -# - outputing sequence of predictions -# -# -# -# -# https://medium.com/@boitemailjeanmid/smart-meters-in-london-part1-description-and-first-insights-jean-michel-d-db97af2de71b -# - -# OPTIONAL: Load the "autoreload" extension so that code can change. But blacklist large modules -# %load_ext autoreload -# %autoreload 2 -# %aimport -pandas -# %aimport -torch -# %aimport -numpy -# %aimport -matplotlib -# %aimport -dask -# %aimport -tqdm -# %matplotlib inline - -# + -# Imports -import torch -from torch import nn, optim -from torch.nn import functional as F -from torch.autograd import Variable -import torch -import torch.utils.data - -import pandas as pd -import numpy as np -import matplotlib.pyplot as plt -plt.rcParams['figure.figsize'] = (12.0, 3.0) -plt.style.use('ggplot') - -from pathlib import Path -from tqdm.auto import tqdm - -import pytorch_lightning as pl -# - - -import warnings -warnings.simplefilter('once') - -from seq2seq_time.data.dataset import Seq2SeqDataSet, Seq2SeqDataSets -from seq2seq_time.predict import predict, predict_multi - -import logging, sys -# logging.basicConfig(stream=sys.stdout, level=logging.INFO) - -# ## Parameters - -# + -device = "cuda" if torch.cuda.is_available() else "cpu" -print(f'using {device}') - -columns_target=['energy(kWh/hh)'] -window_past = 48*2 -window_future = 48*2 -batch_size = 256 -num_workers = 5 -freq = '30T' -max_rows = 5e5 - - -# - - -# ## Load data - -# + - -def get_smartmeter_df(indir=Path('../data/raw/smart-meters-in-london'), max_files=8): - """ - Data loading and cleanding is always messy, so understand this code is optional. - """ - - # Load csv files - csv_files = sorted((indir/'halfhourly_dataset').glob('*.csv'))[:max_files] - - dfs = [] - for f in csv_files: - df = (pd.read_csv(f, parse_dates=[1], na_values=['Null']) - .groupby('tstp') - .sum() - .sort_index() - ) - df['block'] = f.stem - - # Drop nan and 0's - df = df[df['energy(kWh/hh)']!=0] - df = df.dropna() - - # Add time features - time = df.index.to_series() - df["month"] = time.dt.month - df['day'] = time.dt.day - df['week'] = time.dt.week - df['hour'] = time.dt.hour - df['minute'] = time.dt.minute - df['dayofweek'] = time.dt.dayofweek - - # Load weather data - df_weather = pd.read_csv(indir/'weather_hourly_darksky.csv', parse_dates=[3]) - use_cols = ['visibility', 'windBearing', 'temperature', 'time', 'dewPoint', - 'pressure', 'apparentTemperature', 'windSpeed', - 'humidity'] - df_weather = df_weather[use_cols].set_index('time') - - # Resample to match energy data - # Use first, since we have bearing, and you can't take mean - df_weather = df_weather.resample(freq).first().ffill() - - # Join weather and energy data - df = pd.merge(df, df_weather, how='inner', left_index=True, right_index=True, sort=True) - - # Holidays - df_hols = pd.read_csv(indir/'uk_bank_holidays.csv', parse_dates=[0]) - holidays = set(df_hols['Bank holidays'].dt.round('D')) - def is_holiday(dt): - return dt in holidays - days = df.index.floor('D') - holiday_mapping = days.unique().to_series().apply(is_holiday).astype(int).to_dict() - df['holiday'] = days.to_series().map(holiday_mapping).values - - # sort - df.index.name = 'Date' - df = df.loc['2012-09':] # Weird value before this - - dfs.append(df) - - return pd.concat(dfs) -# - - - -# Our dataset is the london smartmeter data. But at half hour intervals - -# + -df = get_smartmeter_df(max_files=12) - -# # Just get the first one for now -# dfs = list(dfs) - -# # df = df.resample(freq).first().dropna() # Where empty we will backfill, this will respect causality, and mostly maintain the mean - -df = df.tail(int(max_rows)).copy() # Just use last X rows -# df = pd.concat(dfs[:6], 0) -# # df = dfs[0] -print(df.block.value_counts()) -df -# - - - - -# ### Plot/explore - - - - - -# + -import holoviews as hv -from holoviews import opts - -from holoviews.plotting.links import RangeToolLink - -import datashader as ds - -from holoviews.operation.datashader import datashade, shade, dynspread, rasterize -from holoviews.operation import decimate - -hv.extension('bokeh') - - -# def house_curve(Name=None): -# if isinstance(Name, int): -# name = df.block.unique()[Name] -# d = df[df.block == Name] -# d_curve = hv.Curve(d, 'Date', 'energy(kWh/hh)', label=Name).opts(framewise=True) -# return d_curve - - -# dmap = hv.DynamicMap(house_curve, kdims=['Name']) -# dmap = dmap.redim.values(Name=list(df.block.unique())) -# dynspread(datashade(dmap).opts(width=800, -# height=300, -# tools=['xwheel_zoom', 'pan'], -# active_tools=['xwheel_zoom', 'pan'], -# default_tools=['reset', 'save', 'hover'] -# )) -# - - - - - -# ### Profiling - -# + -# from pandas_profiling import ProfileReport -# profile = ProfileReport(df, title="Pandas Profiling Report", minimal=True) -# profile -# - - -# ### Norm - -df.describe() - -# + -import sklearn -from sklearn.preprocessing import StandardScaler, OrdinalEncoder -from sklearn_pandas import DataFrameMapper - -columns_input_numeric = list(df.drop(columns=columns_target)._get_numeric_data().columns) -columns_categorical = list(set(df.columns)-set(columns_input_numeric)-set(columns_target)) - -output_scalers = [([n], StandardScaler()) for n in columns_target] -transformers=output_scalers + \ -[([n], StandardScaler()) for n in columns_input_numeric] + \ -[([n], OrdinalEncoder()) for n in columns_categorical] -scaler = DataFrameMapper(transformers, df_out=True) -df_norm = scaler.fit_transform(df) -df_norm -# - - -output_scaler = next(filter(lambda r:r[0][0] in columns_target, scaler.features))[-1] -output_scaler - -# ### Split - -# + -# split data, with the test in the future - -d0 =df_norm.index.min() -d1 = df_norm.index.max() -split_time = d0+(d1-d0)*0.8 -split_time = split_time.round('1D') -print(split_time) -df_train = df_norm.groupby('block').apply(lambda d:d.loc[:split_time]).reset_index(level=0, drop=True) -df_test = df_norm.groupby('block').apply(lambda d:d.loc[split_time:]).reset_index(level=0, drop=True) -# df_test - -# + -# # Show split -# df_train['energy(kWh/hh)'].plot(label='train') -# df_test['energy(kWh/hh)'].plot(label='test') -# plt.ylabel('energy(kWh/hh)') -# plt.legend() -# - - -# # Show split -scatter = dynspread(datashade(hv.Curve(df_train, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='blue')) -scatter *= dynspread(datashade(hv.Curve(df_test, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='red')) -scatter = scatter.opts(plot=dict(width=800)) -scatter - -# ### Dataset - -# + - -# ### Dataset -# These are the columns that we wont know in the future -# We need to blank them out in x_future -columns_blank=['visibility', - 'windBearing', 'temperature', 'dewPoint', 'pressure', - 'apparentTemperature', 'windSpeed', 'humidity'] -df_trains = [d.resample(freq).first().ffill().dropna() for _,d in df_train.groupby('block')] -df_tests = [d.resample(freq).first().ffill().dropna() for _,d in df_test.groupby('block')] -ds_train = Seq2SeqDataSets(df_trains, - window_past=window_past, - window_future=window_future, - columns_blank=columns_blank) -ds_test = Seq2SeqDataSets(df_tests, - window_past=window_past, - window_future=window_future, - columns_blank=columns_blank) -print(ds_train) -print(ds_test) -# - -# we can treat it like an array -ds_train[0] -len(ds_train) -ds_train[-1] - -# + -# We can get rows -x_past, y_past, x_future, y_future = ds_train.get_rows(10) - -# Plot one instance, this is what the model sees -y_past['energy(kWh/hh)'].plot(label='past') -y_future['energy(kWh/hh)'].plot(ax=plt.gca(), label='future') -plt.legend() -plt.ylabel('energy(kWh/hh)') - -# Notice we've added on two new columns tsp (time since present) and is_past -x_past.tail() -# - - -# Notice we've hidden some future columns to prevent cheating -x_future.tail() - - -# ## Plot helpers - -# + -def plot_prediction(ds_preds, i): - """Plot a prediction into the future, at a single point in time.""" - d = ds_preds.isel(t_source=i) - - # Get arrays - xf = d.t_target - yp = d.y_pred - s = d.y_pred_std - yt = d.y_true - now = d.t_source.squeeze() - - - plt.figure(figsize=(12, 4)) - - plt.scatter(xf, yt, label='true', c='k', s=6) - ylim = plt.ylim() - - # plot prediction - plt.fill_between(xf, yp-2*s, yp+2*s, alpha=0.25, - facecolor="b", - interpolate=True, - label="2 std",) - plt.plot(xf, yp, label='pred', c='b') - - # plot true - plt.scatter( - d.t_past, - d.y_past, - c='k', - s=6 - ) - - # plot a red line for now - plt.vlines(x=now, ymin=0, ymax=1, label='now', color='r') - plt.ylim(*ylim) - - now=pd.Timestamp(now.values) - plt.title(f'Prediction NLL={d.nll.mean().item():2.2g}') - plt.xlabel(f'{now.date()}') - plt.ylabel('energy(kWh/hh)') - plt.legend() - plt.xticks(rotation=45) - plt.show() - -def plot_performance(ds_preds, full=False): - """Multiple plots using xr_preds""" - plot_prediction(ds_preds, 24) - - ds_preds.mean('t_source').plot.scatter('t_ahead_hours', 'nll') # Mean over all predictions - n = len(ds_preds.t_source) - plt.ylabel('Negative Log Likelihood (lower is better)') - plt.xlabel('Hours ahead') - plt.title(f'NLL vs time ahead (no. samples={n})') - plt.show() - - # Make a plot of the NLL over time. Does this solution get worse with time? - if full: - d = ds_preds.mean('t_ahead').groupby('t_source').mean().plot.scatter('t_source', 'nll') - plt.xticks(rotation=45) - plt.title('NLL over source time (lower is better)') - plt.show() - - # A scatter plot is easy with xarray - if full: - plt.figure(figsize=(5, 5)) - ds_preds.plot.scatter('y_true', 'y_pred', s=.01) - plt.show() - - -# - - - - -def plot_hist(trainer): - try: - df_hist = pd.read_csv(trainer.logger.experiment.metrics_file_path) - df_hist['epoch'] = df_hist['epoch'].ffill() - df_histe = df_hist.set_index('epoch').groupby('epoch').mean() - if len(df_histe)>1: - df_histe[['loss/train', 'loss/val']].plot(title='history') - return df_histe - except Exception: - pass - - -# ## Lightning - -# + -import pytorch_lightning as pl - -class PL_MODEL(pl.LightningModule): - def __init__(self, model, lr=3e-4, patience=2): - super().__init__() - self._model = model - self.lr = lr - self.patience = patience - - def forward(self, x_past, y_past, x_future, y_future=None): - """Eval/Predict""" - y_dist, extra = self._model(x_past, y_past, x_future, y_future) - return y_dist, extra - - def training_step(self, batch, batch_idx, phase='train'): - x_past, y_past, x_future, y_future = batch - y_dist, extra = self.forward(*batch) - loss = -y_dist.log_prob(y_future).mean() - self.log_dict({f'loss/{phase}':loss}) - if ('loss' in extra) and (phase=='train'): - # some models have a special loss - loss = extra['loss'] - self.log_dict({f'model_loss/{phase}':loss}) - return loss - - def validation_step(self, batch, batch_idx): - return self.training_step(batch, batch_idx, phase='val') - - def configure_optimizers(self): - optim = torch.optim.Adam(self.parameters(), lr=self.lr) - scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( - optim, - patience=self.patience, - verbose=True, - min_lr=1e-7, - ) - return {'optimizer': optim, 'lr_scheduler': scheduler, 'monitor': 'loss/val'} - - -# - - -# # Run -from torch.utils.data import DataLoader -from pytorch_lightning.loggers import CSVLogger -from pytorch_lightning.callbacks.early_stopping import EarlyStopping - - -# + -# Init data -x_past, y_past, x_future, y_future = ds_train.get_rows(10) -input_size = x_past.shape[-1] -output_size = y_future.shape[-1] - -dl_train = DataLoader(ds_train, - batch_size=batch_size, - shuffle=True, - pin_memory=num_workers==0, - num_workers=num_workers) -dl_test = DataLoader(ds_test, batch_size=batch_size, num_workers=num_workers) -# - - -from seq2seq_time.models.lstm_seq2seq import LSTMSeq2Seq -from seq2seq_time.models.lstm_seq import LSTMSeq -from seq2seq_time.models.lstm import LSTM -from seq2seq_time.models.baseline import BaselineLast -from seq2seq_time.models.transformer import Transformer -from seq2seq_time.models.transformer_seq2seq import TransformerSeq2Seq -from seq2seq_time.models.transformer_seq import TransformerSeq -from seq2seq_time.models.neural_process import RANP -# ## Plots -# + -models = [ - RANP(input_size, - output_size), - LSTM(input_size, - output_size, - hidden_size=80, - lstm_layers=3, - lstm_dropout=0.3), - - LSTMSeq2Seq(input_size, - output_size, - hidden_size=64, - lstm_layers=2, - lstm_dropout=0.25), - TransformerSeq2Seq(input_size, - output_size, - hidden_size=64, - nhead=8, - nlayers=4, - attention_dropout=0.3), - Transformer(input_size, - output_size, - attention_dropout=0.3, - nhead=8, - nlayers=6, - hidden_size=64), - TransformerSeq(input_size, - output_size), - LSTMSeq(input_size, - output_size), - -] -# - - -# Baseline model -pt_model = BaselineLast() -model = PL_MODEL(pt_model).to(device) -trainer = pl.Trainer(gpus=1, - max_epochs=1, - limit_train_batches=0.01, - logger=CSVLogger("logs", - name=type(pt_model).__name__), - ) -trainer.fit(model, dl_train, dl_test) -print(plot_hist(trainer)) -ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*8, - device=device, - scaler=output_scaler) -print(f'baseline nll: {ds_preds.nll.mean().item():2.2g}') - -for pt_model in models: - name = type(pt_model).__name__ - print(name) - - # Wrap in lightning - patience = 2 - model = PL_MODEL(pt_model, patience=patience, lr=3e-4).to(device) - - # Trainer - trainer = pl.Trainer(gpus=1, - min_epochs=2, - max_epochs=10, - amp_level='O1', - precision=16, - gradient_clip_val=1, - logger=CSVLogger("logs", - name=type(pt_model).__name__), - callbacks=[ - EarlyStopping(monitor='loss/val', patience=patience*2), -# PrintTableMetricsCallback2() - ], - ) - - # Train - trainer.fit(model, dl_train, dl_test) - - - - ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*8, - device=device, - scaler=output_scaler) - - print(name) - print(f'mean_NLL {ds_predss.nll.mean().item():2.2f}') - - # Performance - ds_preds = ds_predss.isel(block=0) - print(plot_hist(trainer)) - plot_performance(ds_preds) - -# + -# ds_preds = predict(model.to(device), -# ds_test.datasets[0], -# batch_size*8, -# device=device, -# scaler=output_scaler) -# - - -ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*8, - device=device, - scaler=output_scaler) - -ds_pred_block = ds_predss.isel(block=1) - -# # holoviews pred - -import holoviews as hv -from holoviews import opts - - -# + -def plot_prediction_now(t_source): - """Plot predictions with holoviews""" - - # Let us pass in an int - if isinstance(t_source, int): - t_source = ds_pred_block.t_source[t_source].to_pandas() - - d = ds_pred_block.sel(t_source=t_source) - - # Sometimes there are duplicate times, take the first - if len(d.t_source.shape) and d.t_source.shape[0] > 0: - d = d.isel(t_source=0) - if len(d.t_source.shape) and d.t_source.shape[0] == 0: - return None - - now = d.t_source.to_pandas() - - # Plot true - x = np.concatenate([d.t_past, d.t_target]) - yt = np.concatenate([d.y_past, d.y_true]) - p = hv.Scatter({ - 'x': x, - 'y': yt - }, label='true').opts(color='black') - - # Get arrays - xf = d.t_target.values - yp = d.y_pred - s = d.y_pred_std - p *= hv.Curve({ - 'x': xf, - 'y': yp - }, label='pred').opts(color='blue') - p *= hv.Area((xf, yp - 2 * s, yp + 2 * s), - vdims=['y', 'y2'], - label='2*std').opts(alpha=0.5, line_width=0) - - # plot now line - p *= hv.VLine(now, label='now').opts(color='red', framewise=True) - return p.opts(title=f'Prediction at {now}. NLL={d.nll.mean().item():2.2f}') - - -dmap_pred = (hv.DynamicMap(plot_prediction_now, kdims=['t_source']) - .redim.values(t_source=ds_pred_block.t_source.to_pandas()) - .opts(width=800, - height=300, - )) -dmap_pred -# - - -d = ds_preds.mean(['t_source', 'block'])['nll'].groupby('t_ahead_hours').mean() -nll_vs_tahead = hv.Curve((d.t_ahead_hours, d)).redim(x='hours ahead', y='nll').opts(width=800) -nll_vs_tahead - -# + -# def plot_predictions_vs_time(it_ahead): -# """Plot predictions vs time with holoviews""" - -# d = ds_pred_block.isel(t_ahead=it_ahead).groupby('t_source').first() -# # print(d) - -# p = hv.Scatter({ -# 'x': d.t_source, -# 'y': d.y_true -# }, label='true').opts(color='black') - -# # Get arrays -# xf = d.t_source.values -# yp = d.y_pred -# s = d.y_pred_std -# p *= hv.Curve({ -# 'x': xf, -# 'y': yp -# }, label='pred').opts(color='blue') -# p *= hv.Area((xf, yp - 2 * s, yp + 2 * s), -# vdims=['y', 'y2'], -# label='2*std').opts(alpha=0.5, line_width=0) - - -# return p.opts(title=f'Prediction at {it_ahead * pd.Timedelta(freq)} ahead. NLL={d.nll.mean().item():2.2f}') - - -# dmap_preds = (hv.DynamicMap(plot_predictions_vs_time, kdims=['it_ahead']) -# .redim.values(it_ahead=range(ds_pred_block.t_ahead.shape[0])) -# .opts(width=800, -# height=300, -# )) -# dmap_preds -# # TODO fixme -# - - - - -# + -# d = ds_preds.mean(['t_ahead', 'block'])['nll'].groupby('t_source').mean() -# nll_vs_time = hv.Curve(d).opts(width=800) -# nll_vs_time - -# + -# true_vs_pred = hv.Scatter((ds_preds.y_true, ds_preds.y_pred)) -# dynspread(datashade(true_vs_pred)) -# - - -# # Summarize experiments - -# # LR finder - -# + - -# # Run learning rate finder -# lr_finder = trainer.tuner.lr_find(model) - -# # Results can be found in -# lr_finder.results - -# # Plot with -# fig = lr_finder.plot(suggest=True) -# fig.show() - -# # Pick point based on plot, or get suggestion -# new_lr = lr_finder.suggestion() -# - - - diff --git a/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.ipynb b/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.ipynb deleted file mode 100644 index 4d23b1a..0000000 --- a/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.ipynb +++ /dev/null @@ -1,8715 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-10T01:25:12.788851Z", - "start_time": "2020-10-10T01:25:12.783398Z" - } - }, - "source": [ - "# Sequence to Sequence Models for Timeseries Regression\n", - "\n", - "\n", - "In this notebook we are going to tackle a harder problem: \n", - "- predicting the future on a timeseries\n", - "- using an LSTM\n", - "- with rough uncertainty (uncalibrated)\n", - "- outputing sequence of predictions\n", - "\n", - "\n", - "\n", - "\n", - "https://medium.com/@boitemailjeanmid/smart-meters-in-london-part1-description-and-first-insights-jean-michel-d-db97af2de71b\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:25.617948Z", - "start_time": "2020-10-24T01:46:25.197663Z" - } - }, - "outputs": [], - "source": [ - "# OPTIONAL: Load the \"autoreload\" extension so that code can change. But blacklist large modules\n", - "%load_ext autoreload\n", - "%autoreload 2\n", - "%aimport -pandas\n", - "%aimport -torch\n", - "%aimport -numpy\n", - "%aimport -matplotlib\n", - "%aimport -dask\n", - "%aimport -tqdm\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:26.786046Z", - "start_time": "2020-10-24T01:46:25.622254Z" - } - }, - "outputs": [], - "source": [ - "# Imports\n", - "import torch\n", - "from torch import nn, optim\n", - "from torch.nn import functional as F\n", - "from torch.autograd import Variable\n", - "import torch\n", - "import torch.utils.data\n", - "\n", - "import pandas as pd\n", - "import numpy as np\n", - "import matplotlib.pyplot as plt\n", - "plt.rcParams['figure.figsize'] = (12.0, 3.0)\n", - "plt.style.use('ggplot')\n", - "\n", - "from pathlib import Path\n", - "from tqdm.auto import tqdm\n", - "\n", - "import pytorch_lightning as pl" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:26.817188Z", - "start_time": "2020-10-24T01:46:26.789800Z" - } - }, - "outputs": [], - "source": [ - "import warnings\n", - "warnings.simplefilter('once')" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:27.392050Z", - "start_time": "2020-10-24T01:46:26.822497Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "from seq2seq_time.data.dataset import Seq2SeqDataSet, Seq2SeqDataSets\n", - "from seq2seq_time.predict import predict, predict_multi" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:27.445533Z", - "start_time": "2020-10-24T01:46:27.396912Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "import logging, sys\n", - "# logging.basicConfig(stream=sys.stdout, level=logging.INFO)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-10T01:28:32.492160Z", - "start_time": "2020-10-10T01:28:32.488140Z" - } - }, - "source": [ - "## Parameters" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:27.534753Z", - "start_time": "2020-10-24T01:46:27.451107Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "using cuda\n" - ] - } - ], - "source": [ - "device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n", - "print(f'using {device}')\n", - "\n", - "columns_target=['energy(kWh/hh)']\n", - "window_past = 48*2\n", - "window_future = 48*2\n", - "batch_size = 128\n", - "num_workers = 5\n", - "freq = '30T'\n", - "max_rows = 5e5" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load data" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:27.595828Z", - "start_time": "2020-10-24T01:46:27.538900Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [], - "source": [ - "\n", - "def get_smartmeter_df(indir=Path('../data/raw/smart-meters-in-london'), max_files=8):\n", - " \"\"\"\n", - " Data loading and cleanding is always messy, so understand this code is optional.\n", - " \"\"\"\n", - " \n", - " # Load csv files\n", - " csv_files = sorted((indir/'halfhourly_dataset').glob('*.csv'))[:max_files]\n", - " \n", - " dfs = []\n", - " for f in csv_files:\n", - " df = (pd.read_csv(f, parse_dates=[1], na_values=['Null'])\n", - " .groupby('tstp')\n", - " .sum()\n", - " .sort_index()\n", - " )\n", - " df['block'] = f.stem\n", - "\n", - " # Drop nan and 0's\n", - " df = df[df['energy(kWh/hh)']!=0]\n", - " df = df.dropna()\n", - " \n", - " # Add time features \n", - " time = df.index.to_series()\n", - " df[\"month\"] = time.dt.month\n", - " df['day'] = time.dt.day\n", - " df['week'] = time.dt.week\n", - " df['hour'] = time.dt.hour\n", - " df['minute'] = time.dt.minute\n", - " df['dayofweek'] = time.dt.dayofweek\n", - "\n", - " # Load weather data\n", - " df_weather = pd.read_csv(indir/'weather_hourly_darksky.csv', parse_dates=[3])\n", - " use_cols = ['visibility', 'windBearing', 'temperature', 'time', 'dewPoint',\n", - " 'pressure', 'apparentTemperature', 'windSpeed', \n", - " 'humidity']\n", - " df_weather = df_weather[use_cols].set_index('time')\n", - " \n", - " # Resample to match energy data \n", - " # Use first, since we have bearing, and you can't take mean\n", - " df_weather = df_weather.resample(freq).first().ffill() \n", - "\n", - " # Join weather and energy data\n", - " df = pd.merge(df, df_weather, how='inner', left_index=True, right_index=True, sort=True)\n", - "\n", - " # Holidays\n", - " df_hols = pd.read_csv(indir/'uk_bank_holidays.csv', parse_dates=[0])\n", - " holidays = set(df_hols['Bank holidays'].dt.round('D')) \n", - " def is_holiday(dt):\n", - " return dt in holidays\n", - " days = df.index.floor('D')\n", - " holiday_mapping = days.unique().to_series().apply(is_holiday).astype(int).to_dict()\n", - " df['holiday'] = days.to_series().map(holiday_mapping).values\n", - "\n", - " # sort\n", - " df.index.name = 'Date'\n", - " df = df.loc['2012-09':] # Weird value before this\n", - " \n", - " dfs.append(df)\n", - " \n", - " return pd.concat(dfs)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Our dataset is the london smartmeter data. But at half hour intervals" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:46.307630Z", - "start_time": "2020-10-24T01:46:27.600463Z" - }, - "lines_to_next_cell": 0, - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel_launcher.py:26: FutureWarning: Series.dt.weekofyear and Series.dt.week have been deprecated. Please use Series.dt.isocalendar().week instead.\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "block_0 26161\n", - "block_107 26161\n", - "block_106 26161\n", - "block_1 26161\n", - "block_105 26161\n", - "block_102 26161\n", - "block_108 26161\n", - "block_100 26161\n", - "block_10 26161\n", - "block_101 26161\n", - "block_104 26161\n", - "block_103 26161\n", - "Name: block, dtype: int64\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
energy(kWh/hh)blockmonthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholiday
Date
2012-09-01 00:00:005.013block_0913500513.36302.014.089.741028.2714.081.890.750
2012-09-01 00:30:005.157block_09135030513.36302.014.089.741028.2714.081.890.750
2012-09-01 01:00:006.360block_0913510513.50298.013.939.811027.9613.931.590.760
2012-09-01 01:30:005.511block_09135130513.50298.013.939.811027.9613.931.590.760
2012-09-01 02:00:004.922block_0913520513.21274.013.529.941028.0413.520.820.790
......................................................
2014-02-27 22:00:009.819block_1082279220314.00216.04.101.641005.671.413.020.840
2014-02-27 22:30:008.792block_10822792230314.00216.04.101.641005.671.413.020.840
2014-02-27 23:00:008.087block_1082279230314.03200.03.931.611004.621.422.750.850
2014-02-27 23:30:007.114block_10822792330314.03200.03.931.611004.621.422.750.850
2014-02-28 00:00:007.287block_108228900412.63190.03.811.531003.571.472.530.850
\n", - "

313932 rows × 17 columns

\n", - "
" - ], - "text/plain": [ - " energy(kWh/hh) block month day week hour \\\n", - "Date \n", - "2012-09-01 00:00:00 5.013 block_0 9 1 35 0 \n", - "2012-09-01 00:30:00 5.157 block_0 9 1 35 0 \n", - "2012-09-01 01:00:00 6.360 block_0 9 1 35 1 \n", - "2012-09-01 01:30:00 5.511 block_0 9 1 35 1 \n", - "2012-09-01 02:00:00 4.922 block_0 9 1 35 2 \n", - "... ... ... ... ... ... ... \n", - "2014-02-27 22:00:00 9.819 block_108 2 27 9 22 \n", - "2014-02-27 22:30:00 8.792 block_108 2 27 9 22 \n", - "2014-02-27 23:00:00 8.087 block_108 2 27 9 23 \n", - "2014-02-27 23:30:00 7.114 block_108 2 27 9 23 \n", - "2014-02-28 00:00:00 7.287 block_108 2 28 9 0 \n", - "\n", - " minute dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2012-09-01 00:00:00 0 5 13.36 302.0 14.08 \n", - "2012-09-01 00:30:00 30 5 13.36 302.0 14.08 \n", - "2012-09-01 01:00:00 0 5 13.50 298.0 13.93 \n", - "2012-09-01 01:30:00 30 5 13.50 298.0 13.93 \n", - "2012-09-01 02:00:00 0 5 13.21 274.0 13.52 \n", - "... ... ... ... ... ... \n", - "2014-02-27 22:00:00 0 3 14.00 216.0 4.10 \n", - "2014-02-27 22:30:00 30 3 14.00 216.0 4.10 \n", - "2014-02-27 23:00:00 0 3 14.03 200.0 3.93 \n", - "2014-02-27 23:30:00 30 3 14.03 200.0 3.93 \n", - "2014-02-28 00:00:00 0 4 12.63 190.0 3.81 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2012-09-01 00:00:00 9.74 1028.27 14.08 1.89 \n", - "2012-09-01 00:30:00 9.74 1028.27 14.08 1.89 \n", - "2012-09-01 01:00:00 9.81 1027.96 13.93 1.59 \n", - "2012-09-01 01:30:00 9.81 1027.96 13.93 1.59 \n", - "2012-09-01 02:00:00 9.94 1028.04 13.52 0.82 \n", - "... ... ... ... ... \n", - "2014-02-27 22:00:00 1.64 1005.67 1.41 3.02 \n", - "2014-02-27 22:30:00 1.64 1005.67 1.41 3.02 \n", - "2014-02-27 23:00:00 1.61 1004.62 1.42 2.75 \n", - "2014-02-27 23:30:00 1.61 1004.62 1.42 2.75 \n", - "2014-02-28 00:00:00 1.53 1003.57 1.47 2.53 \n", - "\n", - " humidity holiday \n", - "Date \n", - "2012-09-01 00:00:00 0.75 0 \n", - "2012-09-01 00:30:00 0.75 0 \n", - "2012-09-01 01:00:00 0.76 0 \n", - "2012-09-01 01:30:00 0.76 0 \n", - "2012-09-01 02:00:00 0.79 0 \n", - "... ... ... \n", - "2014-02-27 22:00:00 0.84 0 \n", - "2014-02-27 22:30:00 0.84 0 \n", - "2014-02-27 23:00:00 0.85 0 \n", - "2014-02-27 23:30:00 0.85 0 \n", - "2014-02-28 00:00:00 0.85 0 \n", - "\n", - "[313932 rows x 17 columns]" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = get_smartmeter_df(max_files=12)\n", - "\n", - "# # Just get the first one for now\n", - "# dfs = list(dfs)\n", - "\n", - "# # df = df.resample(freq).first().dropna() # Where empty we will backfill, this will respect causality, and mostly maintain the mean\n", - "\n", - "df = df.tail(int(max_rows)).copy() # Just use last X rows\n", - "# df = pd.concat(dfs[:6], 0)\n", - "# # df = dfs[0]\n", - "print(df.block.value_counts())\n", - "df" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:20:41.850970Z", - "start_time": "2020-10-19T07:20:41.747955Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Plot/explore" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:21:39.815254Z", - "start_time": "2020-10-19T07:21:39.703940Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T01:28:33.445231Z", - "start_time": "2020-10-19T01:28:32.776866Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:49.608423Z", - "start_time": "2020-10-24T01:46:46.323260Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/holoviews/operation/datashader.py:5: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\n", - " from collections import Callable\n" - ] - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " if (window.requirejs) {\n", - " require([], function() {\n", - " run_callbacks();\n", - " })\n", - " } else {\n", - " var skip = [];\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " if (skip.indexOf(url) >= 0) { on_load(); continue; }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [];\n", - " var css_urls = [];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " inject_raw_css(\".panel-widget-box {\\n\\tmin-height: 20px;\\n\\tbackground-color: #f5f5f5;\\n\\tborder: 1px solid #e3e3e3 !important;\\n\\tborder-radius: 4px;\\n\\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\toverflow-x: hidden;\\n\\toverflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n\\tappearance: none;\\n\\t-moz-appearance: none;\\n\\t-webkit-appearance: none;\\n\\n\\tborder: none;\\n\\theight: 20px;\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n\\tcolor: royalblue;\\n\\tposition: relative;\\n\\tmargin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n\\tposition: relative;\\n\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n\\tborder-radius:3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n\\tcontent:\\\" \\\";\\n\\tposition:absolute;\\n\\theight: 20px;\\n\\ttop:0;\\n\\tleft:0;\\n\\tright:0;\\n\\tbottom:0;\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " /* BEGIN bokeh.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " const bokeh = factory();\n", - " bokeh.__bokeh__ = true;\n", - " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", - " root.Bokeh = bokeh;\n", - " }\n", - " const Bokeh = root.Bokeh;\n", - " Bokeh[bokeh.version] = bokeh;\n", - " })(this, function() {\n", - " var define;\n", - " var parent_require = typeof require === \"function\" && require\n", - " return (function(modules, entry, aliases, externals) {\n", - " if (aliases === undefined) aliases = {};\n", - " if (externals === undefined) externals = {};\n", - "\n", - " var cache = {};\n", - "\n", - " var normalize = function(name) {\n", - " if (typeof name === \"number\")\n", - " return name;\n", - "\n", - " if (name === \"bokehjs\")\n", - " return entry;\n", - "\n", - " var prefix = \"@bokehjs/\"\n", - " if (name.slice(0, prefix.length) === prefix)\n", - " name = name.slice(prefix.length)\n", - "\n", - " var alias = aliases[name]\n", - " if (alias != null)\n", - " return alias;\n", - "\n", - " var trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", - " var index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", - " if (index != null)\n", - " return index;\n", - "\n", - " return name;\n", - " }\n", - "\n", - " var require = function(name) {\n", - " var mod = cache[name];\n", - " if (!mod) {\n", - " var id = normalize(name);\n", - "\n", - " mod = cache[id];\n", - " if (!mod) {\n", - " if (!modules[id]) {\n", - " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", - " try {\n", - " mod = {exports: externals[id] ? parent_require(id) : {}};\n", - " cache[id] = cache[name] = mod;\n", - " return mod.exports;\n", - " } catch (e) {}\n", - " }\n", - "\n", - " var err = new Error(\"Cannot find module '\" + name + \"'\");\n", - " err.code = 'MODULE_NOT_FOUND';\n", - " throw err;\n", - " }\n", - "\n", - " mod = {exports: {}};\n", - " cache[id] = cache[name] = mod;\n", - " modules[id].call(mod.exports, require, mod, mod.exports);\n", - " } else\n", - " cache[name] = mod;\n", - " }\n", - "\n", - " return mod.exports;\n", - " }\n", - " require.resolve = function(name) {\n", - " return \"\"\n", - " }\n", - "\n", - " var main = require(entry);\n", - " main.require = require;\n", - "\n", - " if (typeof Proxy !== \"undefined\") {\n", - " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", - " main.loader = new Proxy({}, {\n", - " get: function(_obj, module) {\n", - " return require(module);\n", - " }\n", - " });\n", - " }\n", - "\n", - " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", - " if (plugin_aliases === undefined) plugin_aliases = {};\n", - " if (plugin_externals === undefined) plugin_externals = {};\n", - "\n", - " for (var name in plugin_modules) {\n", - " modules[name] = plugin_modules[name];\n", - " }\n", - "\n", - " for (var name in plugin_aliases) {\n", - " aliases[name] = plugin_aliases[name];\n", - " }\n", - "\n", - " for (var name in plugin_externals) {\n", - " externals[name] = plugin_externals[name];\n", - " }\n", - "\n", - " var plugin = require(plugin_entry);\n", - "\n", - " for (var name in plugin) {\n", - " main[name] = plugin[name];\n", - " }\n", - "\n", - " return plugin;\n", - " }\n", - "\n", - " return main;\n", - " })\n", - " ([\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});e(1).__exportStar(e(2),_)},\n", - " function _(t,e,n){\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation.\n", - " \n", - " Permission to use, copy, modify, and/or distribute this software for any\n", - " purpose with or without fee is hereby granted.\n", - " \n", - " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", - " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", - " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", - " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", - " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", - " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", - " PERFORMANCE OF THIS SOFTWARE.\n", - " ***************************************************************************** */\n", - " Object.defineProperty(n,\"__esModule\",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function a(t,e){var n=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=0;u--)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r(\"next\"),r(\"throw\",(function(t){throw t})),r(\"return\"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:\"return\"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r(\"next\"),r(\"throw\"),r(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError(\"attempted to get private field on non-instance\");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError(\"attempted to set private field on non-instance\");return e.set(t,n),n}},\n", - " function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,\"__esModule\",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.version=\"2.2.2\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const r=a._get_ws_url(t,c);s.logger.debug(\"embed: computed ws url: \"+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(\"Somehow we didn't detach \"+e);if(0!=this._all_models.size)throw new Error(\"this._all_models still had stuff in it: \"+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug(\"Adding root: \"+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\\./,\"$1\")==t?i.logger.debug(o):(i.logger.warn(\"JS/Python version mismatch\"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn(\"Cannot create a patch using events from a different document, event had \",o.document,\" we are \",this),new Error(\"Cannot create a patch using events from a different document\");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(\"Unknown patch event \"+JSON.stringify(e))}}}s.Document=j,j.__name__=\"Document\"},\n", - " function _(e,r,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},\n", - " function _(n,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " const e=n(9),i=Object.prototype.toString;function o(n){return\"[object Number]\"===i.call(n)}function c(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||\"[object Boolean]\"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return\"[object String]\"===i.call(n)},r.isFunction=function(n){return\"[object Function]\"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;on.length)),r=Array(e);for(let n=0;nn[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,\"__esModule\",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return nr?r:n}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__=\"AssertionError\",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:\"Assertion failed\")},n.unreachable=function(){throw new Error(\"unreachable code\")}},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(8),o=n(10);function i(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,\"destroyed\"),this.change=new n.Signal0(this,\"change\"),this.transformchange=new n.Signal0(this,\"transformchange\"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r(\"__deferred__\"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+\" must be explicitly wrapped in a function\");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property '${this.prototype.type}.${e}'`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${e}'`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case\"line\":return a.LineVector;case\"fill\":return a.FillVector;case\"hatch\":return a.HatchVector;case\"text\":return a.TextVector;default:throw new Error(`Unknown property mixin kind '${t}'`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split(\"_\",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=\"\"]=o.split(\":\"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[...this.prototype._mixins,...i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${e}'`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(\":\")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e(\"(\")}${e(\"{\")}${r.join(e(\",\")+\" \")}${e(\"}\")}${e(\")\")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;sn.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.delay=\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " function(n,e){return setTimeout(n,e)};const u=\"function\"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&\"id\"==n[0]}return!1}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__=\"Property\";class h extends m{}n.PrimitiveProperty=h,h.__name__=\"PrimitiveProperty\";class v extends m{}n.Any=v,v.__name__=\"Any\";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__=\"Array\";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__=\"Boolean\";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__=\"Color\";class f extends m{}n.Instance=f,f.__name__=\"Instance\";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__=\"Number\";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__=\"Int\";class C extends A{}n.Angle=C,C.__name__=\"Angle\";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__=\"Percent\";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__=\"String\";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__=\"NullString\";class T extends L{}n.FontSize=T,T.__name__=\"FontSize\";class q extends L{_default_override(){return d.settings.dev?\"Bokeh\":void 0}}n.Font=q,q.__name__=\"Font\";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[...e]}}}n.EnumProperty=B,B.__name__=\"EnumProperty\",n.Enum=M;class w extends B{get enum_values(){return[...r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;ne*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__=\"AngleSpec\";class le extends G{get default_units(){return\"data\"}get valid_units(){return[...r.SpatialUnits]}}n.DistanceSpec=le,le.__name__=\"DistanceSpec\";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__=\"BooleanSpec\";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__=\"NumberSpec\";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level\",\"*\"),t.HTTPMethod=o.Enum(\"POST\",\"GET\"),t.HexTileOrientation=o.Enum(\"pointytop\",\"flattop\"),t.HoverMode=o.Enum(\"mouse\",\"hline\",\"vline\"),t.LatLon=o.Enum(\"lat\",\"lon\"),t.LegendClickPolicy=o.Enum(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum(\"butt\",\"round\",\"square\"),t.LineJoin=o.Enum(\"miter\",\"round\",\"bevel\"),t.LinePolicy=o.Enum(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.Logo=o.Enum(\"normal\",\"grey\"),t.MarkerType=o.Enum(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=o.Enum(\"show\",\"ignore\"),t.Orientation=o.Enum(\"vertical\",\"horizontal\"),t.OutputBackend=o.Enum(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=o.Enum(\"percent\",\"absolute\"),t.Place=o.Enum(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=o.Enum(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=o.Enum(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=o.Enum(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=o.Enum(\"canvas\",\"css\"),t.ResetPolicy=o.Enum(\"standard\",\"event_only\"),t.RoundingFunction=o.Enum(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=o.Enum(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=o.Enum(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=o.Enum(\"ascending\",\"descending\"),t.SpatialUnits=o.Enum(\"screen\",\"data\"),t.StartEnd=o.Enum(\"start\",\"end\"),t.StepMode=o.Enum(\"after\",\"before\",\"center\"),t.TapBehavior=o.Enum(\"select\",\"inspect\"),t.TextAlign=o.Enum(\"left\",\"right\",\"center\"),t.TextBaseline=o.Enum(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=o.Enum(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=o.Enum(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=o.Enum(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=o.Enum(\"replace\",\"append\"),t.VerticalAlign=o.Enum(\"top\",\"middle\",\"bottom\")},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__=\"Kind\",function(e){class n extends i{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends i{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__=\"Boolean\",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__=\"Ref\",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__=\"Number\",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__=\"Int\",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__=\"Or\",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e))}}c.__name__=\"Array\",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__=\"Null\",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__=\"Nullable\",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__=\"String\",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__=\"Enum\",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__=\"Struct\",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__=\"Dict\",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__=\"Color\",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__=\"Percent\",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(...e)=>new t.Kinds.Or(e),t.Tuple=(...e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(...e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?\"0\"+r:r}function o(e){if(0==(e+=\"\").indexOf(\"#\"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf(\"rgb\")){const r=e.replace(/^rgba?\\(|\\s+|\\)$/g,\"\").split(\",\");let t=r.slice(0,3).map(a).join(\"\");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),\"#\"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case\"rgba\":r={start:\"rgba(\",len:4,alpha:!0};break;case\"rgb(\":r={start:\"rgb(\",len:3,alpha:!1};break;default:return!1}if(new RegExp(\".*?(\\\\.).*(,)\").test(e))return!1;const t=e.replace(r.start,\"\").replace(\")\",\"\").split(\",\").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||\"#\"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n", - " function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;st(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error(\"dimensions don't match\")}to_sparse(){return[...this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__=\"Matrix\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__=\"Settings\",s.settings=new n},\n", - " function _(e,l,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,\"black\"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,\"gray\"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,\"black\"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,\"#444444\"],text_alpha:[a.Number,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSize,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,\"black\"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,\"bevel\"],line_cap:[a.LineCapScalar,\"butt\"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,\"gray\"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,\"black\"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,\"#444444\"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeScalar,\"16px\"],text_font_style:[a.FontStyleScalar,\"normal\"],text_align:[a.TextAlignScalar,\"left\"],text_baseline:[a.TextBaselineScalar,\"bottom\"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,\"black\"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,\"gray\"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,\"black\"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,\"#444444\"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeSpec,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]=\"0123456789ABCDEF\".substr(Math.floor(16*Math.random()),1);return t[12]=\"4\",t[16]=\"0123456789ABCDEF\".substr(3&t[16].charCodeAt(0)|8,1),t.join(\"\")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?\"j\"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>\"'`])/g,t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}})},r.use_strict=function(t){return\"'use strict';\\n\"+t}},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol(\"__ndarray__\");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__=\"Uint8NDArray\";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__=\"Int8NDArray\";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__=\"Uint16NDArray\";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__=\"Int16NDArray\";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__=\"Uint32NDArray\";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__=\"Int32NDArray\";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__=\"Float32NDArray\";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float64\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__=\"Float64NDArray\",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?\"float32\":(()=>{switch(!0){case t instanceof Uint8Array:return\"uint8\";case t instanceof Int8Array:return\"int8\";case t instanceof Uint16Array:return\"uint16\";case t instanceof Int16Array:return\"int16\";case t instanceof Uint32Array:return\"uint32\";case t instanceof Int32Array:return\"int32\";case t instanceof Float32Array:return\"float32\";case t instanceof Float64Array:return\"float64\";default:a.unreachable()}})());const{shape:n}=s;switch(e){case\"uint8\":return new h(t,n);case\"int8\":return new _(t,n);case\"uint16\":return new u(t,n);case\"int16\":return new l(t,n);case\"uint32\":return new y(t,n);case\"int32\":return new c(t,n);case\"float32\":return new p(t,n);case\"float64\":return new o(t,n)}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(\"\"))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e{switch(a){case\"uint8\":return new _.Uint8NDArray(o,n);case\"int8\":return new _.Int8NDArray(o,n);case\"uint16\":return new _.Uint16NDArray(o,n);case\"int16\":return new _.Int16NDArray(o,n);case\"uint32\":return new _.Uint32NDArray(o,n);case\"int32\":return new _.Int32NDArray(o,n);case\"float32\":return new _.Float32NDArray(o,n);case\"float64\":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=\"\"+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},\n", - " function _(e,n,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.is_ie=(()=>{const e=\"undefined\"!=typeof navigator?navigator.userAgent:\"\";return e.indexOf(\"MSIE\")>=0||e.indexOf(\"Trident\")>0||e.indexOf(\"Edge\")>0})(),i.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},\n", - " function _(t,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol(\"pretty\");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):\"\"+t}token(t){return t}boolean(t){return\"\"+t}number(t){return null!=this.precision?t.toFixed(this.precision):\"\"+t}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r(\"[\")}${n.join(r(\",\")+\" \")}${r(\"]\")}`}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:\"Object\",i=this.array(t);return`${e}${n(\"(\")}${i}${n(\")\")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(`${e}${r(\":\")} ${this.to_string(o)}`);return`${r(\"{\")}${n.join(r(\",\")+\" \")}${r(\"}\")}`}}n.Printer=o,o.__name__=\"Printer\",n.to_string=function(t,r){return new o(r).to_string(t)}},\n", - " function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},\n", - " function _(a,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error(\"not implemented\")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__=\"AnnotationView\";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:\"annotation\"})}}n.Annotation=a,a.__name__=\"Annotation\",a.init_Annotation()},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default(\"GOOGLE\"),u=new l.default(\"WGS84\"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if(\"object\"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(\",\"):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var l=[\"3857\",\"900913\",\"3785\",\"102113\"];r.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,\"authority\");if(e){var r=a.default(e,\"epsg\");return r&&l.indexOf(r)>-1}}(e))return n.default[\"EPSG:3857\"];var r=function(t){var e=a.default(t,\"extension\");if(e)return a.default(e,\"proj4\")}(e);return r?i.default(r):e}return function(t){return\"+\"===t[0]}(t)?i.default(t):void 0}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];\"string\"==typeof r?\"+\"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if(\"string\"==typeof t){if(t in l)return l[t]}else\"EPSG\"in t?l[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?l[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?l[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},\n", - " function _(e,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.default=function(e){e(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),e(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),e(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),e.WGS84=e[\"EPSG:4326\"],e[\"EPSG:3785\"]=e[\"EPSG:3857\"],e.GOOGLE=e[\"EPSG:3857\"],e[\"EPSG:900913\"]=e[\"EPSG:3857\"],e[\"EPSG:102113\"]=e[\"EPSG:3857\"]}},\n", - " function _(t,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){\"@null\"===t?f.datumCode=\"none\":f.nadgrids=t},axis:function(t){3===t.length&&-1!==\"ewnsud\".indexOf(t.substr(0,1))&&-1!==\"ewnsud\".indexOf(t.substr(1,1))&&-1!==\"ewnsud\".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?\"function\"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return\"string\"==typeof f.datumCode&&\"WGS84\"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},\n", - " function _(P,_,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},\n", - " function _(e,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},\n", - " function _(e,t,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(l),l}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\\]]/,n=/[\\d\\.E\\-\\+]/;function a(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},a.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},a.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:u,forward:o,inverse:f,names:s.names}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},\n", - " function _(e,t,u){Object.defineProperty(u,\"__esModule\",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){return e<0?-1:1}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},\n", - " function _(t,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},\n", - " function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,\"__esModule\",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=[\"longlat\",\"identity\"],i.default={init:t,forward:r,inverse:r,names:i.names}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default(\"WGS84\"),r),e=n),\"enu\"!==e.axis&&(r=_.default(e,!1,r)),\"longlat\"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),\"longlat\"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),\"enu\"!==a.axis?_.default(a,!0,r):r}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},\n", - " function _(a,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},\n", - " function _(e,a,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!==\"ew\".indexOf(e.axis[r])?\"x\":\"y\"):1===r?(s=d,n=-1!==\"ns\".indexOf(e.axis[r])?\"y\":\"x\"):(s=u,n=\"z\"),e.axis[r]){case\"e\":case\"w\":case\"n\":case\"s\":f[n]=s;break;case\"u\":void 0!==i[n]&&(f.z=s);break;case\"d\":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},\n", - " function _(e,i,n){function t(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return\"overlay\"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__=\"RendererView\";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,\"default\"],y_range_name:[_.String,\"default\"]})}}t.Renderer=d,d.__name__=\"Renderer\",d.init_Renderer()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error(\"model of a view wasn't configured\");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error(\"parent of a view wasn't configured\")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+\" is not a root layout\")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__=\"View\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(8),o=t(13),s=t=>(e={},...n)=>{const s=document.createElement(t);s.classList.add(\"bk\");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if(\"class\"===t&&(i.isString(n)&&(n=n.split(/\\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if(\"style\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if(\"data\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error(\"expected a DOM element, string, false or null, got \"+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return s(t)(e,...n)},n.div=s(\"div\"),n.span=s(\"span\"),n.canvas=s(\"canvas\"),n.link=s(\"link\"),n.style=s(\"style\"),n.a=s(\"a\"),n.p=s(\"p\"),n.i=s(\"i\"),n.pre=s(\"pre\"),n.button=s(\"button\"),n.label=s(\"label\"),n.input=s(\"input\"),n.select=s(\"select\"),n.option=s(\"option\"),n.optgroup=s(\"optgroup\"),n.textarea=s(\"textarea\"),n.nbsp=function(){return document.createTextNode(\" \")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+\"px\",i.top=e.y+\"px\",i.width=e.width+\"px\",i.height=e.height+\"px\",null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||\" \"==this.hatch_pattern.spec.value||\"blank\"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select(\"pattern\",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select(\"pattern\",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__=\"Hatch\",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select(\"text_font_style\",e),super.cache_select(\"text_font_size\",e),super.cache_select(\"text_font\",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return\"font\"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"text_color\",t),s=this.cache_select(\"text_alpha\",t),l=this.cache_select(\"font\",t),c=this.cache_select(\"text_align\",t),i=this.cache_select(\"text_baseline\",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__=\"Text\",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=\"\"]=t.split(\":\");let l;switch(a){case\"line\":l=f;break;case\"fill\":l=d;break;case\"hatch\":l=k;break;case\"text\":l=x;break;default:throw new Error(\"unknown visual: \"+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__=\"Visuals\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error(\"cannot create a random attribute name for an undefined object\");const e=\"ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz\";let i=\"\";do{i=\"\";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return e[t]||e.start}function l(t){const e={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(\",\");e=e||10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(\"path\"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement(\"linearGradient\",{id:a(this.__ids),x1:n+\"px\",x2:o+\"px\",y1:r+\"px\",y2:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error(\"The provided double value is non-finite\");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement(\"radialGradient\",{id:a(this.__ids),cx:h+\"px\",cy:c+\"px\",r:r+\"px\",fx:o+\"px\",fy:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font),e={style:t[1]||\"normal\",size:t[4]||\"10px\",family:t[6]||\"sans-serif\",weight:t[3]||\"normal\",decoration:t[2]||\"normal\"};return\"underline\"===this.__fontUnderline&&(e.decoration=\"underline\"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement(\"a\");return i.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement(\"text\",{\"font-family\":n.family,\"font-size\":n.size,\"font-style\":n.style,\"font-weight\":n.weight,\"text-decoration\":n.decoration,x:e,y:i,\"text-anchor\":o(this.textAlign),\"dominant-baseline\":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement(\"clipPath\"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(\"Inavlid number of arguments passed to drawImage: \"+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_=\"translate(\"+i+\", \"+s+\")\",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement(\"g\"),this._apply_transform(i,u),c.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=n,e.height=r;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute(\"transform\",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\");const i=this.__document.createElement(\"canvas\");i.width=n,i.height=r;const s=i.getContext(\"2d\");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute(\"transform\",_),e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=a(this.__ids);if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",\"\"+this._to_number(t.width)),i.setAttribute(\"height\",\"\"+this._to_number(t.height)),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__=\"SVGRenderingContext2D\"},\n", - " function _(t,s,r){Object.defineProperty(r,\"__esModule\",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o{const e=document.createElement(\"canvas\"),t=e.getContext(\"webgl\",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace(\"WebGL is not supported\")})(),v={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case\"webgl\":case\"canvas\":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext(\"2d\");if(null==e)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),\"image/png\")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:\"image/svg+xml\"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__=\"CanvasLayer\";class g extends n.DOMView{constructor(){super(...arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;\"webgl\"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:\"bk-canvas-events\",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,...i),l.logger.debug(\"CanvasView initialized\")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__=\"CanvasView\";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,\"canvas\"]})}}i.Canvas=x,x.__name__=\"Canvas\",x.init_Canvas()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__=\"DOMView\",n.prototype.tagName=\"div\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;he.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText(\"m\").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[...this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[...this.references()].filter(t=>t instanceof e);throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=l,l.__name__=\"Model\",l.init_Model()},\n", - " function _(e,s,_){Object.defineProperty(_,\"__esModule\",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__=\"CoordinateTransform\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return\"data\"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,\"render\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"render\",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,\"clip\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"clip\",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;onew o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__=\"Arrow\",d.init_Arrow()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__=\"ArrowHead\",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__=\"OpenHead\",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__=\"NormalHead\",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__=\"VeeHead\",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__=\"TeeHead\",c.init_TeeHead()},\n", - " function _(t,n,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.lengthnew _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,\"select\"),this.inspect=new i.Signal(this,\"inspect\"),this.streaming=new i.Signal0(this,\"streaming\"),this.patching=new i.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__=\"ColumnarDataSource\",d.init_ColumnarDataSource()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__=\"DataSource\",r.init_DataSource()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__=\"Selection\",d.init_Selection()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i=\"replace\"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,\"replace\"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,\"replace\")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__=\"SelectionManager\",p.init_SelectionManager()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,\"fill\"),i=p.includes(e._mixins,\"line\"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):\"auto\"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):\"auto\"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[...this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__=\"GlyphRendererView\";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,\"auto\"],selection_glyph:[d.Any,\"auto\"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__=\"GlyphRenderer\",b.init_GlyphRenderer()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__=\"DataRendererView\";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:\"glyph\"})}}t.DataRenderer=s,s.__name__=\"DataRenderer\",s.init_DataRenderer()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;ee/2);r=new h.NumberArray(_);for(let i=0;i<_;i++)r[i]=t[i]-e[i];a=new h.NumberArray(_);for(let i=0;i<_;i++)a[i]=t[i]+e[i]}else{r=t,a=new h.NumberArray(_);for(let e=0;e<_;e++)a[e]=r[e]+i[e]}const l=e.v_compute(r),o=e.v_compute(a);return n?d.map(l,(e,t)=>Math.ceil(Math.abs(o[t]-l[t]))):d.map(l,(e,t)=>Math.abs(o[t]-l[t]))}draw_legend_for_index(e,t,i){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(o.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:i,sy0:s,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[...this.index.indices({x0:r,x1:a,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(e,t,i){var s,r;const{x_range:a,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=e.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,r=i.array(e);let l=t.select(r);if(i instanceof n.BaseCoordinateSpec){const e=\"x\"==i.dimension?a:_;if(e instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=e.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let t=0;t>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d>2];tthis._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__=\"_FlatBush\";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];on.x1&&(n.x1=i),dn.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__=\"SpatialIndex\"},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];ithis._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},\n", - " function _(s,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;ia.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[...t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,\"percent\"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[...e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[...e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__=\"FactorRange\",h.init_FactorRange()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__=\"Range\",r.init_Range()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;\"point\"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):\"v\"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},\n", - " function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,\"__esModule\",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join(\"-\");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;es[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__=\"DashAtlas\";const r={miter:0,round:1,bevel:2},l={\"\":0,none:0,\".\":0,round:1,\")\":1,\"(\":1,o:1,\"triangle in\":2,\"<\":2,\"triangle out\":3,\">\":3,square:4,\"[\":4,\"]\":4,\"=\":4,butt:5,\"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t1)for(let e=0;e0||console.log(`Variable ${t} is not an active attribute`));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h=\"vertexAttribPointer\",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log(\"Program has unset variables: \"+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error(\"Program validation error\")}draw(t,e){if(!this._linked)throw new Error(\"Cannot draw program if code has not been set\");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__=\"Program\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__=\"Buffer\";class r extends i{constructor(){super(...arguments),this._target=34962}}s.VertexBuffer=r,r.__name__=\"VertexBuffer\";class a extends i{constructor(){super(...arguments),this._target=34963}}s.IndexBuffer=a,a.__name__=\"IndexBuffer\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(`Type ${a.constructor.name} not allowed for texture`);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__=\"Texture2d\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__=\"BaseGLGlyph\"},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.vertex_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size, u_offset;\\nuniform vec2 u_scale_aspect;\\nuniform float u_scale_length;\\n\\nuniform vec4 u_color;\\nuniform float u_antialias;\\nuniform float u_length;\\nuniform float u_linewidth;\\nuniform float u_dash_index;\\nuniform float u_closed;\\n\\nattribute vec2 a_position;\\nattribute vec4 a_tangents;\\nattribute vec2 a_segment;\\nattribute vec2 a_angles;\\nattribute vec2 a_texcoord;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\nfloat cross(in vec2 v1, in vec2 v2)\\n{\\n return v1.x*v2.y - v1.y*v2.x;\\n}\\n\\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\\n{\\n return cross(v2-v1,v1-v3) / length(v2-v1);\\n}\\n\\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\\n{\\n float c = cos(alpha);\\n float s = sin(alpha);\\n result = vec2( c*v.x - s*v.y,\\n s*v.x + c*v.y );\\n}\\n\\nvoid main()\\n{\\n bool closed = (u_closed > 0.0);\\n\\n // Attributes and uniforms to varyings\\n v_color = u_color;\\n v_linewidth = u_linewidth;\\n v_segment = a_segment * u_scale_length;\\n v_length = u_length * u_scale_length;\\n\\n // Scale to map to pixel coordinates. The original algorithm from the paper\\n // assumed isotropic scale. We obviously do not have this.\\n vec2 abs_scale_aspect = abs(u_scale_aspect);\\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\\n\\n // Correct angles for aspect ratio\\n vec2 av;\\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\\n v_angles.x = atan(av.y, av.x);\\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\\n v_angles.y = atan(av.y, av.x);\\n\\n // Thickness below 1 pixel are represented using a 1 pixel thickness\\n // and a modified alpha\\n v_color.a = min(v_linewidth, v_color.a);\\n v_linewidth = max(v_linewidth, 1.0);\\n\\n // If color is fully transparent we just will discard the fragment anyway\\n if( v_color.a <= 0.0 ) {\\n gl_Position = vec4(0.0,0.0,0.0,1.0);\\n return;\\n }\\n\\n // This is the actual half width of the line\\n float w = ceil(u_antialias+v_linewidth)/2.0;\\n\\n vec2 position = a_position;\\n\\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\\n float u = a_texcoord.x;\\n float v = a_texcoord.y;\\n vec2 o1 = vec2( +t1.y, -t1.x);\\n vec2 o2 = vec2( +t2.y, -t2.x);\\n\\n // This is a join\\n // ----------------------------------------------------------------\\n if( t1 != t2 ) {\\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\\n vec2 t = normalize(t1+t2);\\n vec2 o = vec2( + t.y, - t.x);\\n\\n if ( u_dash_index > 0.0 )\\n {\\n // Broken angle\\n // ----------------------------------------------------------------\\n if( (abs(angle) > THETA) ) {\\n position += v * w * o / cos(angle/2.0);\\n float s = sign(angle);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position -= 2.0 * w * t1 / sin(angle);\\n u -= 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position += 2.0 * w * t2 / sin(angle);\\n u += 2.0*w / sin(angle);\\n }\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position += 2.0 * w * t1 / sin(angle);\\n u += 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position -= 2.0 * w * t2 / sin(angle);\\n u -= 2.0*w / sin(angle);\\n }\\n }\\n }\\n // Continuous angle\\n // ------------------------------------------------------------\\n } else {\\n position += v * w * o / cos(angle/2.0);\\n if( u == +1.0 ) u = v_segment.y;\\n else u = v_segment.x;\\n }\\n }\\n\\n // Solid line\\n // --------------------------------------------------------------------\\n else\\n {\\n position.xy += v * w * o / cos(angle/2.0);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n }\\n }\\n\\n // This is a line start or end (t1 == t2)\\n // ------------------------------------------------------------------------\\n } else {\\n position += v * w * o1;\\n if( u == -1.0 ) {\\n u = v_segment.x - w;\\n position -= w * t1;\\n } else {\\n u = v_segment.y + w;\\n position += w * t2;\\n }\\n }\\n\\n // Miter distance\\n // ------------------------------------------------------------------------\\n vec2 t;\\n vec2 curr = a_position * abs_scale;\\n if( a_texcoord.x < 0.0 ) {\\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\\n\\n rotate( t1, +v_angles.x/2.0, t);\\n v_miter.x = signed_distance(curr, curr+t, position);\\n\\n rotate( t2, +v_angles.y/2.0, t);\\n v_miter.y = signed_distance(next, next+t, position);\\n } else {\\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\\n\\n rotate( t1, -v_angles.x/2.0,t);\\n v_miter.x = signed_distance(prev, prev+t, position);\\n\\n rotate( t2, -v_angles.y/2.0,t);\\n v_miter.y = signed_distance(curr, curr+t, position);\\n }\\n\\n if (!closed && v_segment.x <= 0.0) {\\n v_miter.x = 1e10;\\n }\\n if (!closed && v_segment.y >= v_length)\\n {\\n v_miter.y = 1e10;\\n }\\n\\n v_texcoord = vec2( u, v*w );\\n\\n // Calculate position in device coordinates. Note that we\\n // already scaled with abs scale above.\\n vec2 normpos = position * sign(u_scale_aspect);\\n normpos += 0.5; // make up for Bokeh's offset\\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n}\\n\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.fragment_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform sampler2D u_dash_atlas;\\n\\nuniform vec2 u_linecaps;\\nuniform float u_miter_limit;\\nuniform float u_linejoin;\\nuniform float u_antialias;\\nuniform float u_dash_phase;\\nuniform float u_dash_period;\\nuniform float u_dash_index;\\nuniform vec2 u_dash_caps;\\nuniform float u_closed;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\n// Compute distance to cap ----------------------------------------------------\\nfloat cap( int type, float dx, float dy, float t, float linewidth )\\n{\\n float d = 0.0;\\n dx = abs(dx);\\n dy = abs(dy);\\n if (type == 0) discard; // None\\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\\n else if (type == 4) d = max(dx,dy); // Square\\n else if (type == 5) d = max(dx+t,dy); // Butt\\n return d;\\n}\\n\\n// Compute distance to join -------------------------------------------------\\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\\n in float linewidth )\\n{\\n // texcoord.x is distance from start\\n // texcoord.y is distance from centerline\\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\\n\\n float dx = texcoord.x;\\n\\n // Round join\\n if( type == 1 ) {\\n if (dx < segment.x) {\\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\\n //d = length( texcoord - vec2(segment.x,0.0));\\n } else if (dx > segment.y) {\\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\\n //d = length( texcoord - vec2(segment.y,0.0));\\n }\\n }\\n // Bevel join\\n else if ( type == 2 ) {\\n if (dx < segment.x) {\\n vec2 x = texcoord - vec2(segment.x,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n\\n } else if (dx > segment.y) {\\n vec2 x = texcoord - vec2(segment.y,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n }\\n /* Original code for bevel which does not work for us\\n if( (dx < segment.x) || (dx > segment.y) )\\n d = max(d, min(abs(x.x),abs(x.y)));\\n */\\n }\\n\\n return d;\\n}\\n\\nvoid main()\\n{\\n // If color is fully transparent we just discard the fragment\\n if( v_color.a <= 0.0 ) {\\n discard;\\n }\\n\\n // Test if dash pattern is the solid one (0)\\n bool solid = (u_dash_index == 0.0);\\n\\n // Test if path is closed\\n bool closed = (u_closed > 0.0);\\n\\n vec4 color = v_color;\\n float dx = v_texcoord.x;\\n float dy = v_texcoord.y;\\n float t = v_linewidth/2.0-u_antialias;\\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\\n float d = 0.0;\\n\\n vec2 linecaps = u_linecaps;\\n vec2 dash_caps = u_dash_caps;\\n float line_start = 0.0;\\n float line_stop = v_length;\\n\\n // Apply miter limit; fragments too far into the miter are simply discarded\\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\\n if (into_miter > u_miter_limit*v_linewidth/2.0)\\n discard;\\n }\\n\\n // Solid line --------------------------------------------------------------\\n if( solid ) {\\n d = abs(dy);\\n if( (!closed) && (dx < line_start) ) {\\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\\n }\\n else if( (!closed) && (dx > line_stop) ) {\\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\\n }\\n else {\\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\\n }\\n\\n // Dash line --------------------------------------------------------------\\n } else {\\n float segment_start = v_segment.x;\\n float segment_stop = v_segment.y;\\n float segment_center= (segment_start+segment_stop)/2.0;\\n float freq = u_dash_period*width;\\n float u = mod( dx + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n float dash_center= tex.x * width;\\n float dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n float dash_start = dx - u + _start;\\n float dash_stop = dx - u + _stop;\\n\\n // Compute extents of the first dash (the one relative to v_segment.x)\\n // Note: this could be computed in the vertex shader\\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\\n float u = mod(segment_start + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_start - u + _start;\\n dash_stop = segment_start - u + _stop;\\n }\\n\\n // Compute extents of the last dash (the one relatives to v_segment.y)\\n // Note: This could be computed in the vertex shader\\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\\n float u = mod(segment_stop + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_stop - u + _start;\\n dash_stop = segment_stop - u + _stop;\\n }\\n\\n // This test if the we are dealing with a discontinuous angle\\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\\n //if( dx < line_start) discontinuous = false;\\n //if( dx > line_stop) discontinuous = false;\\n\\n float d_join = join( int(u_linejoin), abs(dy),\\n v_segment, v_texcoord, v_miter, v_linewidth );\\n\\n // When path is closed, we do not have room for linecaps, so we make room\\n // by shortening the total length\\n if (closed) {\\n line_start += v_linewidth/2.0;\\n line_stop -= v_linewidth/2.0;\\n }\\n\\n // We also need to take antialias area into account\\n //line_start += u_antialias;\\n //line_stop -= u_antialias;\\n\\n // Check is dash stop is before line start\\n if( dash_stop <= line_start ) {\\n discard;\\n }\\n // Check is dash start is beyond line stop\\n if( dash_start >= line_stop ) {\\n discard;\\n }\\n\\n // Check if current dash start is beyond segment stop\\n if( discontinuous ) {\\n // Dash start is beyond segment, we discard\\n if( (dash_start > segment_stop) ) {\\n discard;\\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\\n }\\n\\n // Dash stop is before segment, we discard\\n if( (dash_stop < segment_start) ) {\\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.x == 1.0 ) {\\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.y == 1.0 ) {\\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\\n float a = v_angles.x/2.0;\\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the cap into square to avoid holes\\n dash_caps.x = 4.0;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\\n float a = v_angles.y/2.0;\\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the caps into square to avoid holes\\n dash_caps.y = 4.0;\\n }\\n }\\n }\\n\\n // Line cap at start\\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\\n }\\n // Line cap at stop\\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\\n }\\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\\n else if( dash_type < -0.5 ) {\\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash cap right\\n else if( dash_type > 0.5 ) {\\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash body (plain)\\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\\n d = abs(dy);\\n }\\n\\n // Line join\\n if( (dx > line_start) && (dx < line_stop)) {\\n if( (dx <= segment_start) && (dash_start <= segment_start)\\n && (dash_stop >= segment_start) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.x;\\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\\n && (dash_stop >= segment_stop) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.y;\\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n\\n // Distance to border ------------------------------------------------------\\n d = d - t;\\n if( d < 0.0 ) {\\n gl_FragColor = color;\\n } else {\\n d /= u_antialias;\\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\\n }\\n}\\n\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__=\"PatchView\";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__=\"Patch\",r.init_Patch()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r=0;t--)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e=0;s--)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;ethis.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;ithis._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__=\"CDSView\",a.init_CDSView()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([...e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__=\"GraphRendererView\";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__=\"GraphRenderer\",d.init_GraphRenderer()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__=\"GraphHitTestPolicy\";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__=\"NodesOnly\";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];\"selection\"==n?d=e.selected.indices.map(t=>e.data.index[t]):\"inspection\"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;es.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,\"inspection\");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__=\"EdgesAndLinkedNodes\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__=\"SelectionPolicy\";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__=\"IntersectRenderers\";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__=\"UnionRenderers\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.concat=function(t,...e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},\n", - " function _(n,o,e){function t(...n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,\"__esModule\",{value:!0}),e.union=t,e.intersection=function(n,...o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,...o){const e=new Set(n);for(const n of t(...o))e.delete(n);return e}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__=\"DocumentEvent\";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__=\"DocumentEventBatch\";class d extends o{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__=\"MessageSentEvent\";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if(\"id\"===this.attr)throw new Error(\"'id' field should never change, whatever code just set it is wrong\");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__=\"ModelChangedEvent\";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__=\"ColumnsPatchedEvent\";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__=\"ColumnsStreamedEvent\";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=h,h.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:\"RootAdded\",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__=\"RootRemovedEvent\"},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;snew r.ColumnDataSource]})}}i.UpperLower=a,a.__name__=\"UpperLower\",a.init_UpperLower()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:\"data\"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&tthis.stop&&ithis.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch(\"vertical\"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case\"vertical\":[t,e]=[1,i.length];break;case\"horizontal\":[t,e]=[i.length,1]}const o=document.createElement(\"canvas\");o.width=t,o.height=e;const a=o.getContext(\"2d\"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case\"vertical\":n=e+a+2*r,l=i+s+o+2*r;break;case\"horizontal\":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case\"top_left\":l=s.start+o,_=r.start+o;break;case\"top_center\":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case\"top_right\":l=s.end-o-i,_=r.start+o;break;case\"bottom_right\":l=s.end-o-i,_=r.end-o-e;break;case\"bottom_center\":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case\"bottom_left\":l=s.start+o,_=r.end-o-e;break;case\"center_left\":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case\"center\":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case\"center_right\":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;ei.measureText(t.toString()).width));break;case\"horizontal\":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return\"vertical\"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+\" \"+this.model.title_text_font_size+\" \"+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case\"vertical\":\"auto\"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a=\"auto\"==this.model.width?25:this.model.width;break;case\"horizontal\":o=\"auto\"==this.model.height?25:this.model.height,\"auto\"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;tr||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;tr||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],\"vertical\"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__=\"ColorBarView\";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([[\"major_label_\",d.Text],[\"title_\",d.Text],[\"major_tick_\",d.Line],[\"minor_tick_\",d.Line],[\"border_\",d.Line],[\"bar_\",d.Line],[\"background_\",d.Fill]]),this.define({location:[c.Any,\"top_right\"],orientation:[c.Orientation,\"vertical\"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,\"auto\"],height:[c.Any,\"auto\"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:\"center\",major_label_text_baseline:\"middle\",major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}}i.ColorBar=w,w.__name__=\"ColorBar\",w.init_ColorBar()},\n", - " function _(e,c,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__=\"BasicTicker\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__=\"AdaptiveTicker\",_.init_AdaptiveTicker()},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__=\"ContinuousTicker\",_.init_ContinuousTicker()},\n", - " function _(e,c,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__=\"Ticker\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,\"auto\"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t=1;r?s++:s--){if(t){e[0]=i[0].toExponential(s);for(let t=1;tu(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:(\"#\"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+=\"ff\"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;rt)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__=\"ColorMapper\",u.init_ColorMapper()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error(\"mapping single values is not supported\")}}n.Mapper=s,s.__name__=\"Mapper\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__=\"Transform\"},\n", - " function _(r,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,\"circle\"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__=\"CategoricalMarkerMapper\",n.init_CategoricalMarkerMapper()},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType,\" \"]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__=\"CategoricalPatternMapper\",c.init_CategoricalPatternMapper()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[...this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([...n],s):null!=n?c=[...n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[...this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;na?e:r[l]}}o.LinearColorMapper=a,a.__name__=\"LinearColorMapper\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(ol&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__=\"LogColorMapper\"},\n", - " function _(n,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(nt.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__=\"ScanningColorMapper\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;nn/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;nthis._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;rs*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case\"before\":e=i.find_index(this._x_sorted,e=>t<=e);break;case\"center\":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error(\"unknown mode: \"+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__=\"StepInterpolator\",n.init_StepInterpolator()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__=\"LinearInterpolationScale\",_.init_LinearInterpolationScale()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;ethis.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||\"css\"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case\"left\":l=0;break;case\"center\":l=-s/2;break;case\"right\":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case\"top\":a=0;break;case\"middle\":a=-.5*i;break;case\"bottom\":a=-1*i;break;case\"alphabetic\":a=-.8*i;break;case\"hanging\":a=-.17*i;break;case\"ideographic\":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?\"solid\":\"dashed\";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position=\"absolute\",n.style.left=s+o[0]+\"px\",n.style.top=i+o[1]+\"px\",n.style.color=\"\"+this.visuals.text.text_color.value(),n.style.opacity=\"\"+this.visuals.text.text_alpha.value(),n.style.font=\"\"+this.visuals.text.font_value(),n.style.lineHeight=\"normal\",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=\"\"+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=\"\"+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+\"px\",n.style.borderColor=\"\"+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__=\"TextAnnotationView\";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,\"canvas\"]})}}s.TextAnnotation=u,u.__name__=\"TextAnnotation\",u.init_TextAnnotation()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),\"css\"==this.model.render_mode)for(let t=0,e=this._text.length;t{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return[\"data\"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),\"data\"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;onew l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__=\"LabelSet\",h.init_LabelSet()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([...this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if(\"vertical\"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case\"top_left\":y=p.start+a,k=w.start+a;break;case\"top_center\":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case\"top_right\":y=p.end-a-f,k=w.start+a;break;case\"bottom_right\":y=p.end-a-f,k=w.end-a-u;break;case\"bottom_center\":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case\"bottom_left\":y=p.start+a,k=w.end-a-u;break;case\"center_left\":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case\"center\":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case\"center_right\":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of d.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return r.every(d.renderers,t=>t.visible);case\"mute\":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__=\"LegendView\";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,\"item_change\")}static init_Legend(){this.prototype.default_view=g,this.mixins([[\"label_\",n.Text],[\"title_\",n.Text],[\"inactive_\",n.Fill],[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({orientation:[h.Orientation,\"vertical\"],location:[h.Any,\"top_right\"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,\"none\"]}),this.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=m,m.__name__=\"Legend\",m.init_Legend()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||_.logger.error(\"Bad column name on label: \"+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):[\"Invalid field\"]}}return[]}}n.LegendItem=u,u.__name__=\"LegendItem\",u.init_LegendItem()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&\"value\"in e},n.isField=function(e){return t.isPlainObject(e)&&\"field\"in e}},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;sthis.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__=\"SlopeView\";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:\"black\"})}}i.Slope=_,_.__name__=\"Slope\",_.init_Slope()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;\"width\"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),\"width\"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__=\"SpanView\";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,\"canvas\"],location:[a.Number,null],location_units:[a.SpatialUnits,\"data\"],dimension:[a.Dimension,\"width\"]}),this.override({line_color:\"black\"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__=\"Span\",r.init_Span()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":l=s.top+5;break;case\"middle\":l=s.vcenter;break;case\"bottom\":l=s.bottom-5}switch(this.model.align){case\"left\":i=s.left+e;break;case\"center\":i=s.hcenter;break;case\"right\":i=s.right-e}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=s.left-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.right+5}switch(this.model.align){case\"left\":l=s.bottom-e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.top+e}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=s.right-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.left+5}switch(this.model.align){case\"left\":l=s.top+e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__=\"TitleView\";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,\"helvetica\"],text_font_size:[o.StringSpec,\"13px\"],text_font_style:[o.FontStyle,\"bold\"],text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,\"bottom\"],align:[o.TextAlign,\"left\"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,\"left\"],text_baseline:[o.TextBaseline,\"bottom\"]})}}i.Title=c,c.__name__=\"Title\",c.init_Title()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(...arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__=\"ToolbarPanelView\";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__=\"ToolbarPanel\",h.init_ToolbarPanel()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[...super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case\"horizontal\":return eo.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__=\"Tooltip\",d.init_Tooltip()},\n", - " function _(o,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tooltip=\"bk-tooltip\",l.bk_tooltip_arrow=\"bk-tooltip-arrow\",l.bk_tooltip_custom=\"bk-tooltip-custom\",l.bk_tooltip_row_label=\"bk-tooltip-row-label\",l.bk_tooltip_row_value=\"bk-tooltip-row-value\",l.bk_tooltip_color_block=\"bk-tooltip-color-block\"},\n", - " function _(e,b,k){Object.defineProperty(k,\"__esModule\",{value:!0}),k.bk_active=\"bk-active\",k.bk_inline=\"bk-inline\",k.bk_left=\"bk-left\",k.bk_right=\"bk-right\",k.bk_above=\"bk-above\",k.bk_below=\"bk-below\",k.bk_up=\"bk-up\",k.bk_down=\"bk-down\",k.bk_side=function(e){switch(e){case\"above\":return k.bk_above;case\"below\":return k.bk_below;case\"left\":return k.bk_left;case\"right\":return k.bk_right}}},\n", - " function _(o,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root {\\n /* Same border color used everywhere */\\n /* Gray of icons */\\n}\\n.bk-root .bk-tooltip {\\n font-weight: 300;\\n font-size: 12px;\\n position: absolute;\\n padding: 5px;\\n border: 1px solid #e5e5e5;\\n color: #2f2f2f;\\n background-color: white;\\n pointer-events: none;\\n opacity: 0.95;\\n z-index: 100;\\n}\\n.bk-root .bk-tooltip > div:not(:first-child) {\\n /* gives space when multiple elements are being hovered over */\\n margin-top: 5px;\\n border-top: #e5e5e5 1px dashed;\\n}\\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-left::before {\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right::after {\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-above::before {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n top: -10px;\\n border-bottom-width: 10px;\\n border-bottom-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-below::after {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n bottom: -10px;\\n border-top-width: 10px;\\n border-top-color: #909599;\\n}\\n.bk-root .bk-tooltip-row-label {\\n text-align: right;\\n color: #26aae1;\\n /* blue from toolbar highlighting */\\n}\\n.bk-root .bk-tooltip-row-value {\\n color: default;\\n /* seems to be necessary for notebook */\\n}\\n.bk-root .bk-tooltip-color-block {\\n width: 12px;\\n height: 12px;\\n margin-left: 5px;\\n margin-right: 5px;\\n outline: #dddddd solid 1px;\\n display: inline-block;\\n}\\n'},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;snew o.TeeHead({level:\"underlay\",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:\"underlay\",size:10})]}),this.override({level:\"underlay\"})}}t.Whisker=_,_.__name__=\"Whisker\",_.init_Whisker()},\n", - " function _(i,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(...arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;ec&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;ih(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;ic||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error(\"unexpected\")}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__=\"AxisView\";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([[\"axis_\",l.Line],[\"major_tick_\",l.Line],[\"minor_tick_\",l.Line],[\"major_label_\",l.Text],[\"axis_label_\",l.Text]]),this.define({bounds:[n.Any,\"auto\"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,\"\"],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,\"horizontal\"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})}}i.Axis=b,b.__name__=\"Axis\",b.init_Axis()},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__=\"GuideRendererView\";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:\"guide\"})}}d.GuideRenderer=t,t.__name__=\"GuideRenderer\",t.init_GuideRenderer()},\n", - " function _(t,s,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&ht[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__=\"CategoricalAxisView\";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([[\"separator_\",l.Line],[\"group_\",l.Text],[\"subgroup_\",l.Text]]),this.define({group_label_orientation:[_.Any,\"parallel\"],subgroup_label_orientation:[_.Any,\"parallel\"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})}}o.CategoricalAxis=h,h.__name__=\"CategoricalAxis\",h.init_CategoricalAxis()},\n", - " function _(t,c,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&tnew r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__=\"DatetimeAxis\",_.init_DatetimeAxis()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__=\"LinearAxis\",c.init_LinearAxis()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,\"%Y %m %d %H %M %S\").split(/\\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf(\"$1%06d\",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?s:i.default(t,s)}}const l=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,[\"%fus\"]],milliseconds:[a.Array,[\"%3Nms\",\"%S.%3Ns\"]],seconds:[a.Array,[\"%Ss\"]],minsec:[a.Array,[\":%M:%S\"]],minutes:[a.Array,[\":%M\",\"%Mm\"]],hourmin:[a.Array,[\"%H:%M\"]],hours:[a.Array,[\"%Hh\",\"%H:%M\"]],days:[a.Array,[\"%m/%d\",\"%a%d\"]],months:[a.Array,[\"%m/%Y\",\"%b %Y\"]],years:[a.Array,[\"%Y\"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return s>=60?\"minsec\":\"seconds\";case!(e<3600):return s>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn(\"unable to format tick for timestamp value \"+s),o.logger.warn(\" - \"+t),a.push(\"ERR\");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!r){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,\"\");s!=t&&isNaN(parseInt(s))&&(s=\"0\"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__=\"DatetimeTickFormatter\",_.init_DatetimeTickFormatter()},\n", - " function _(e,t,n){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", - " function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n", - " function _(e,n,t){\n", - " /*!\n", - " * numbro.js\n", - " * version : 1.6.2\n", - " * author : Företagsplatsen AB\n", - " * license : MIT\n", - " * http://www.foretagsplatsen.se\n", - " */\n", - " var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+s(i-r.length),n>0&&(a+=\".\"+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function d(e,n,t){return n.indexOf(\"$\")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf(\"$\"),c=l.indexOf(\"(\"),s=l.indexOf(\"+\"),f=l.indexOf(\"-\"),d=\"\",p=\"\";-1===l.indexOf(\"$\")?\"infix\"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=\" \"+p+\" \")):i[o].currency.spaceSeparated&&(d=\" \"):l.indexOf(\" $\")>-1?(d=\" \",l=l.replace(\" $\",\"\")):l.indexOf(\"$ \")>-1?(d=\" \",l=l.replace(\"$ \",\"\")):l=l.replace(\"$\",\"\");if(a=h(e,l,t,p),-1===n.indexOf(\"$\"))switch(i[o].currency.position){case\"postfix\":a.indexOf(\")\")>-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;break;case\"infix\":break;case\"prefix\":a.indexOf(\"(\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join(\"\")):a=i[o].currency.symbol+d+a;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else u<=1?a.indexOf(\"(\")>-1||a.indexOf(\"+\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=1,(u-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=h(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?f(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?f(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=f(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+i[o].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},\n", - " function _(e,n,t){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__=\"DatetimeTicker\",k.init_DatetimeTicker()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__=\"CompositeTicker\",a.init_CompositeTicker()},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__=\"DaysTicker\",_.init_DaysTicker()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__=\"SingleIntervalTicker\",a.init_SingleIntervalTicker()},\n", - " function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,\"__esModule\",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__=\"MonthsTicker\",_.init_MonthsTicker()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__=\"YearsTicker\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__=\"LogAxisView\";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__=\"LogAxis\",c.init_LogAxis()},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__=\"LogTickFormatter\",c.init_LogTickFormatter()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__=\"LogTicker\",n.init_LogTicker()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__=\"MercatorAxisView\";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:\"lat\"}),formatter:()=>new o.MercatorTickFormatter({dimension:\"lat\"})})}}r.MercatorAxis=n,n.__name__=\"MercatorAxis\",n.init_MercatorAxis()},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error(\"HTML output is not supported in this context\");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__=\"OpenURL\",a.init_OpenURL()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__=\"CartesianFrame\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__=\"CategoricalScale\"},\n", - " function _(t,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,\"percent\"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,\"auto\"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(`computed ${i.length} renderers for ${this}`);for(const t of i)l.logger.trace(\" - \"+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e_&&(\"start\"==this.follow?a=e+s*_:\"end\"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}\"auto\"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__=\"DataRange1d\",h.init_DataRange1d()},\n", - " function _(e,a,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__=\"DataRange\",_.init_DataRange()},\n", - " function _(a,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},\n", - " function _(t,h,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__=\"Sizeable\",i.SizingPolicy=e.Enum(\"fixed\",\"fit\",\"min\",\"max\")},\n", - " function _(i,t,h){Object.defineProperty(h,\"__esModule\",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||\"fit\",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||\"fit\",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||\"start\",o=i.valign||\"start\";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return\"max\"==this.sizing.width_policy}is_height_expanding(){return\"max\"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=s&&\"fixed\"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else\"fixed\"==s?h=a(t/e):\"fixed\"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__=\"Layoutable\";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case\"fixed\":e=null!=this.sizing.width?this.sizing.width:0;break;case\"min\":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case\"fit\":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case\"max\":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case\"fixed\":s=null!=this.sizing.height?this.sizing.height:0;break;case\"min\":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case\"fit\":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case\"max\":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__=\"LayoutItem\";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__=\"ContentLayoutable\"},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(...arguments),this.children=[]}}h.Stack=i,i.__name__=\"Stack\";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__=\"HStack\";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__=\"VStack\";class c extends o.Layoutable{constructor(){super(...arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case\"top_left\":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case\"top_center\":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case\"top_right\":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case\"bottom_right\":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case\"bottom_center\":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case\"bottom_left\":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case\"center_left\":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case\"center\":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case\"center_right\":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__=\"AnchorLayout\"},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__=\"DefaultMap\";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__=\"Container\";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[\"*\"]:this.rows;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||\"auto\";if(\"fixed\"==i.policy)e[s]={policy:\"fixed\",height:i.height,align:o};else if(\"min\"==i.policy)e[s]={policy:\"min\",align:o};else if(\"fit\"==i.policy||\"max\"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:\"max\",flex:1,align:o}:e[s]={policy:\"min\",align:o}}}const o=new Array(s);for(let i=0;i{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[\"*\"]:this.cols;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||\"auto\";if(\"fixed\"==s.policy)o[i]={policy:\"fixed\",width:s.width,align:e};else if(\"min\"==s.policy)o[i]={policy:\"min\",align:e};else if(\"fit\"==s.policy||\"max\"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if(\"auto\"!=s.policy)throw new Error(\"unrechable\");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:\"max\",flex:1,align:e}:o[i]={policy:\"min\",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];\"fixed\"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];\"fixed\"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}});let a;a=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}g=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&\"auto\"!=f[i].align?f[i].align:g.halign,y=t==s&&\"auto\"!=_[t].align?_[t].align:g.valign;let x=f[i].left;\"start\"==m?x+=g.margin.left:\"center\"==m?x+=c((w-p)/2):\"end\"==m&&(x+=w-g.margin.right-p);let b=_[t].top;\"start\"==y?b+=g.margin.top:\"center\"==y?b+=c((u-d)/2):\"end\"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__=\"Grid\";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows=\"fit\"}}s.Row=_,_.__name__=\"Row\";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols=\"fit\"}}s.Column=f,f.__name__=\"Column\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__=\"ContentBox\";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__=\"VariadicBox\";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__=\"CachedVariadicBox\"},\n", - " function _(e,r,u){Object.defineProperty(u,\"__esModule\",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__=\"Expression\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);tn(t,e,r,...this.values))}}n.FuncTickFormatter=u,u.__name__=\"FuncTickFormatter\",u.init_FuncTickFormatter()},\n", - " function _(r,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,\"0,0\"],language:[i.String,\"en\"],rounding:[i.RoundingFunction,\"round\"]})}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__=\"NumeralTickFormatter\",u.init_NumeralTickFormatter()},\n", - " function _(t,r,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,\"%s\"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__=\"PrintfTickFormatter\",c.init_PrintfTickFormatter()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__=\"AnnularWedgeView\";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,\"anticlock\"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__=\"AnnularWedge\",l.init_AnnularWedge()},\n", - " function _(s,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if(\"data\"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__=\"AnnulusView\";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__=\"Annulus\",d.init_Annulus()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__=\"ArcView\";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,\"anticlock\"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__=\"Arc\",d.init_Arc()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0Math.max(s,i[e]));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&\"data\"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&\"data\"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&\"data\"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_attribute(\"a_sx\",\"float\",i.vbo_sx),this.prog.set_attribute(\"a_sy\",\"float\",i.vbo_sy),this.prog.set_attribute(\"a_size\",\"float\",i.vbo_s),this.prog.set_attribute(\"a_angle\",\"float\",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf(\"MSIE \")+e.indexOf(\"Trident/\")+e.indexOf(\"Edge/\")>0&&n.logger.warn(\"WebGL warning: IE is known to produce 1px sprites whith selections.\"),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,\"a_linewidth\",t,this.glyph.visuals.line,\"line_width\"),f(this.prog,this.vbo_fg_color,\"a_fg_color\",t,this.glyph.visuals.line,\"line\"),f(this.prog,this.vbo_bg_color,\"a_bg_color\",t,this.glyph.visuals.fill,\"fill\"),this.prog.set_uniform(\"u_antialias\",\"float\",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__=\"MarkerGL\";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},\n", - " function _(n,i,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.vertex_shader=\"\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\n//\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform vec2 u_offset;\\nuniform vec2 u_scale;\\nuniform float u_antialias;\\n//\\nattribute float a_sx;\\nattribute float a_sy;\\nattribute float a_size;\\nattribute float a_angle; // in radians\\nattribute float a_linewidth;\\nattribute vec4 a_fg_color;\\nattribute vec4 a_bg_color;\\n//\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying vec2 v_rotation;\\n\\nvoid main (void)\\n{\\n v_size = a_size * u_pixel_ratio;\\n v_linewidth = a_linewidth * u_pixel_ratio;\\n v_fg_color = a_fg_color;\\n v_bg_color = a_bg_color;\\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\\n vec2 pos = vec2(a_sx, a_sy); // in pixels\\n pos += 0.5; // make up for Bokeh's offset\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n}\\n\"},\n", - " function _(a,n,s){Object.defineProperty(s,\"__esModule\",{value:!0}),s.fragment_shader=a=>`\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\nconst float PI = 3.14159265358979323846264;\\n//\\nuniform float u_antialias;\\n//\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec2 v_rotation;\\n\\n${a}\\n\\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\\n{\\n vec4 frag_color;\\n float t = linewidth/2.0 - antialias;\\n float signed_distance = distance;\\n float border_distance = abs(signed_distance) - t;\\n float alpha = border_distance/antialias;\\n alpha = exp(-alpha*alpha);\\n\\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\\n float select = float(bool(fg_color.a));\\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\\n // Similarly, if we want a transparent bg\\n select = float(bool(bg_color.a));\\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\\n\\n if( border_distance < 0.0)\\n frag_color = fg_color;\\n else if( signed_distance < 0.0 ) {\\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\\n } else {\\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\\n } else {\\n discard;\\n }\\n }\\n return frag_color;\\n}\\n\\nvoid main()\\n{\\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\\n v_rotation.y*P.x + v_rotation.x*P.y);\\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n float distance = marker(P*point_size, v_size);\\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\\n}\\n`,s.circle=\"\\nfloat marker(vec2 P, float size)\\n{\\n return length(P) - size/2.0;\\n}\\n\",s.square=\"\\nfloat marker(vec2 P, float size)\\n{\\n return max(abs(P.x), abs(P.y)) - size/2.0;\\n}\\n\",s.diamond=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n return r1 / SQRT_2;\\n}\\n\",s.hex=\"\\nfloat marker(vec2 P, float size)\\n{\\n vec2 q = abs(P);\\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\\n}\\n\",s.triangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y -= size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.invertedtriangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y += size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = - P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.cross='\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(square, cross);\\n}\\n',s.circlecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.squarecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.diamondcross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n diamond /= SQRT_2;\\n float c1 = max(diamond, s1);\\n float c2 = max(diamond, s2);\\n float c3 = max(diamond, s3);\\n float c4 = max(diamond, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.x='\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size / 1.6;\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(circle, X);\\n}\\n',s.circlex='\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n float almost = min(min(min(c1, c2), c3), c4);\\n // In this case, the X is also outside of the main shape\\n float Xmask = length(P) - size / 1.6; // a circle\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return min(max(X, Xmask), almost);\\n}\\n',s.squarex=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.asterisk='\\nfloat marker(vec2 P, float size)\\n{\\n // Masks\\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\\n // Shapes\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n // Result is union of masked shapes\\n return min(max(X, diamond), max(cross, square));\\n}\\n'},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__=\"CenterRotatable\",o.init_CenterRotatable()},\n", - " function _(e,l,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__=\"EllipseView\";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__=\"Ellipse\",_.init_Ellipse()},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,\"data\"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,\"data\"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,\"center\"):this.sw=this._width,\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);\"data\"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),\"data\"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__=\"EllipseOvalView\";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__=\"EllipseOval\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;sthis._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__=\"ImageView\";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})}}a.Image=o,o.__name__=\"Image\",o.init_Image()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;tthis.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;snull));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s=\"data\"==this.model.properties.w.units,r=\"data\"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case\"top_left\":case\"bottom_left\":case\"center_left\":return[e,e+t];case\"top_center\":case\"bottom_center\":case\"center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"center_right\":return[e-t,e]}}function d(e,t){switch(c){case\"top_left\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"center_left\":case\"center\":case\"center_right\":return[e+t/2,e-t/2]}}if(s)for(let e=0;eNaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case\"data\":this.sw=this.sdist(this.renderer.xscale,this._x,e,\"edge\",this.model.dilate);break;case\"screen\":this.sw=e}switch(this.model.properties.h.units){case\"data\":this.sh=this.sdist(this.renderer.yscale,this._y,t,\"edge\",this.model.dilate);break;case\"screen\":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case\"top_left\":return[t,s];case\"top_center\":return[t-r/2,s];case\"top_right\":return[t-r,s];case\"center_right\":return[t-r,s-i/2];case\"bottom_right\":return[t-r,s-i];case\"bottom_center\":return[t-r/2,s-i];case\"bottom_left\":return[t,s-i];case\"center_left\":return[t,s-i/2];case\"center\":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__=\"ImageURLView\";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,\"top_left\"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__=\"ImageURL\",c.init_ImageURL()},\n", - " function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__=\"ImageLoader\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i0&&o.set(e,i)}return new d.Selection({indices:[...o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+\".scenterxy() is not implemented\")}}i.MultiLineView=y,y.__name__=\"MultiLineView\";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:\"xs\"}],ys:[r.YCoordinateSeqSpec,{field:\"ys\"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__=\"MultiLine\",x.init_MultiLine()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n1&&d.length>1)for(let s=1,i=n.length;s{this._inner_loop(e,t,o),e.fill(\"evenodd\")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e1){let r=!1;for(let e=1;ethis._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__=\"StepView\";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,\"before\"]})}}i.Step=_,_.__name__=\"Step\",_.init_Step()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=\"\"+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select(\"font\",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf(\"\\n\")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split(\"\\n\"),h=x*o.length,l=this.visuals.text.cache_select(\"text_baseline\",a);let r;switch(l){case\"top\":r=0;break;case\"middle\":r=-h/2+x/2;break;case\"bottom\":r=-h+x;break;default:r=0,console.warn(`'${l}' baseline not supported with multi line text`)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;tthis.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords(\"major\",!1);for(let s=0;s{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords(\"major\");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords(\"minor\");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;et[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;ithis.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__=\"BoxView\";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__=\"Box\",r.init_Box()},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(...arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:\"\",l.classes(this.el).clear().add(...this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(`layout computed in ${Date.now()-i} ms`),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;\"auto\"==i&&(i=this._width_policy()),\"auto\"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)i=t=\"fixed\";else if(\"stretch_both\"==s)i=t=\"max\";else if(\"stretch_width\"==s)i=\"max\";else if(\"stretch_height\"==s)t=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":i=\"max\",t=\"min\";break;case\"scale_height\":i=\"min\",t=\"max\";break;case\"scale_both\":i=\"max\",t=\"max\"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),\"auto\"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e=\"png\"==i?\"canvas\":\"svg\",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__=\"LayoutDOMView\";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),\"auto\"],height_policy:[d(_.SizingPolicy,n),\"auto\"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),\"start\"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__=\"LayoutDOM\",m.init_LayoutDOM()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_root=\"bk-root\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__=\"ColumnView\";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,\"auto\"]})}}i.Column=_,_.__name__=\"Column\",_.init_Column()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__=\"GridBoxView\";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,\"auto\"],cols:[l.Any,\"auto\"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__=\"GridBox\",a.init_GridBox()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__=\"HTMLBoxView\";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__=\"HTMLBox\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__=\"RowView\";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,\"auto\"]})}}i.Row=l,l.__name__=\"Row\",l.init_Row()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__=\"SpacerView\";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__=\"Spacer\",o.init_Spacer()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[...super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let o=1,c=1;switch(e){case\"above\":o-=1;break;case\"below\":o+=1;break;case\"left\":c-=1;break;case\"right\":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,...r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth=\"\",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight=\"\",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s=\"above\"==t||\"below\"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener(\"click\",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener(\"click\",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:\"\"},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c=\"left\"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute(\"disabled\",\"\"):a.removeAttribute(\"disabled\"),c==t-1?o.setAttribute(\"disabled\",\"\"):o.removeAttribute(\"disabled\");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+\"px\"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+\"px\"}};a.addEventListener(\"click\",d(\"left\")),o.addEventListener(\"click\",d(\"right\")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__=\"TabsView\";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,\"above\"],active:[o.Number,0]})}}s.Tabs=g,g.__name__=\"Tabs\",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,\"\"],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__=\"Panel\",w.init_Panel()},\n", - " function _(e,b,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.bk_tabs_header=\"bk-tabs-header\",a.bk_headers_wrapper=\"bk-headers-wrapper\",a.bk_headers=\"bk-headers\",a.bk_tab=\"bk-tab\",a.bk_close=\"bk-close\"},\n", - " function _(n,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_btn=\"bk-btn\",t.bk_btn_group=\"bk-btn-group\",t.bk_btn_default=\"bk-btn-default\",t.bk_btn_primary=\"bk-btn-primary\",t.bk_btn_success=\"bk-btn-success\",t.bk_btn_warning=\"bk-btn-warning\",t.bk_btn_danger=\"bk-btn-danger\",t.bk_btn_type=function(n){switch(n){case\"default\":return t.bk_btn_default;case\"primary\":return t.bk_btn_primary;case\"success\":return t.bk_btn_success;case\"warning\":return t.bk_btn_warning;case\"danger\":return t.bk_btn_danger}},t.bk_dropdown_toggle=\"bk-dropdown-toggle\"},\n", - " function _(e,b,d){Object.defineProperty(d,\"__esModule\",{value:!0}),d.bk_menu=\"bk-menu\",d.bk_caret=\"bk-caret\",d.bk_divider=\"bk-divider\"},\n", - " function _(n,o,b){Object.defineProperty(b,\"__esModule\",{value:!0});b.default=\"\\n.bk-root .bk-btn {\\n height: 100%;\\n display: inline-block;\\n text-align: center;\\n vertical-align: middle;\\n white-space: nowrap;\\n cursor: pointer;\\n padding: 6px 12px;\\n font-size: 12px;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n outline: 0;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-btn:hover,\\n.bk-root .bk-btn:focus {\\n text-decoration: none;\\n}\\n.bk-root .bk-btn:active,\\n.bk-root .bk-btn.bk-active {\\n background-image: none;\\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\\n}\\n.bk-root .bk-btn[disabled] {\\n cursor: not-allowed;\\n pointer-events: none;\\n opacity: 0.65;\\n box-shadow: none;\\n}\\n.bk-root .bk-btn-default {\\n color: #333;\\n background-color: #fff;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-default:hover {\\n background-color: #f5f5f5;\\n border-color: #b8b8b8;\\n}\\n.bk-root .bk-btn-default.bk-active {\\n background-color: #ebebeb;\\n border-color: #adadad;\\n}\\n.bk-root .bk-btn-default[disabled],\\n.bk-root .bk-btn-default[disabled]:hover,\\n.bk-root .bk-btn-default[disabled]:focus,\\n.bk-root .bk-btn-default[disabled]:active,\\n.bk-root .bk-btn-default[disabled].bk-active {\\n background-color: #e6e6e6;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-primary {\\n color: #fff;\\n background-color: #428bca;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-primary:hover {\\n background-color: #3681c1;\\n border-color: #2c699e;\\n}\\n.bk-root .bk-btn-primary.bk-active {\\n background-color: #3276b1;\\n border-color: #285e8e;\\n}\\n.bk-root .bk-btn-primary[disabled],\\n.bk-root .bk-btn-primary[disabled]:hover,\\n.bk-root .bk-btn-primary[disabled]:focus,\\n.bk-root .bk-btn-primary[disabled]:active,\\n.bk-root .bk-btn-primary[disabled].bk-active {\\n background-color: #506f89;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-success {\\n color: #fff;\\n background-color: #5cb85c;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-success:hover {\\n background-color: #4eb24e;\\n border-color: #409240;\\n}\\n.bk-root .bk-btn-success.bk-active {\\n background-color: #47a447;\\n border-color: #398439;\\n}\\n.bk-root .bk-btn-success[disabled],\\n.bk-root .bk-btn-success[disabled]:hover,\\n.bk-root .bk-btn-success[disabled]:focus,\\n.bk-root .bk-btn-success[disabled]:active,\\n.bk-root .bk-btn-success[disabled].bk-active {\\n background-color: #667b66;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-warning {\\n color: #fff;\\n background-color: #f0ad4e;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-warning:hover {\\n background-color: #eea43b;\\n border-color: #e89014;\\n}\\n.bk-root .bk-btn-warning.bk-active {\\n background-color: #ed9c28;\\n border-color: #d58512;\\n}\\n.bk-root .bk-btn-warning[disabled],\\n.bk-root .bk-btn-warning[disabled]:hover,\\n.bk-root .bk-btn-warning[disabled]:focus,\\n.bk-root .bk-btn-warning[disabled]:active,\\n.bk-root .bk-btn-warning[disabled].bk-active {\\n background-color: #c89143;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-danger {\\n color: #fff;\\n background-color: #d9534f;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-danger:hover {\\n background-color: #d5433e;\\n border-color: #bd2d29;\\n}\\n.bk-root .bk-btn-danger.bk-active {\\n background-color: #d2322d;\\n border-color: #ac2925;\\n}\\n.bk-root .bk-btn-danger[disabled],\\n.bk-root .bk-btn-danger[disabled]:hover,\\n.bk-root .bk-btn-danger[disabled]:focus,\\n.bk-root .bk-btn-danger[disabled]:active,\\n.bk-root .bk-btn-danger[disabled].bk-active {\\n background-color: #a55350;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-group {\\n height: 100%;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-btn-group > .bk-btn {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n}\\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\\n margin-left: -1px;\\n}\\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\\n border-bottom-right-radius: 0;\\n border-top-right-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\\n border-bottom-left-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\\n border-radius: 0;\\n}\\n.bk-root .bk-btn-group .bk-dropdown-toggle {\\n flex: 0 0 0;\\n -webkit-flex: 0 0 0;\\n padding: 6px 6px;\\n}\\n\"},\n", - " function _(n,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});r.default=\"\\n.bk-root .bk-menu-icon {\\n width: 28px;\\n height: 28px;\\n background-size: 60%;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-context-menu {\\n position: absolute;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n width: auto;\\n height: auto;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-context-menu.bk-horizontal {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-context-menu.bk-vertical {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-context-menu > .bk-divider {\\n cursor: default;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\\n width: 1px;\\n margin: 5px 0;\\n}\\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\\n height: 1px;\\n margin: 0 5px;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider) {\\n border: 1px solid transparent;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\\n border-color: #26aae1;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\\n background-color: #f9f9f9;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-bottom-left-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\\n border-top-right-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\\n border-bottom-left-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-menu {\\n position: absolute;\\n left: 0;\\n width: 100%;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-menu.bk-above {\\n bottom: 100%;\\n}\\n.bk-root .bk-menu.bk-below {\\n top: 100%;\\n}\\n.bk-root .bk-menu > .bk-divider {\\n height: 1px;\\n margin: 7.5px 0;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-menu > :not(.bk-divider) {\\n padding: 6px 12px;\\n}\\n.bk-root .bk-menu > :not(.bk-divider):hover,\\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\\n background-color: #e6e6e6;\\n}\\n.bk-root .bk-caret {\\n display: inline-block;\\n vertical-align: middle;\\n width: 0;\\n height: 0;\\n margin: 0 5px;\\n}\\n.bk-root .bk-caret.bk-down {\\n border-top: 4px solid;\\n}\\n.bk-root .bk-caret.bk-up {\\n border-bottom: 4px solid;\\n}\\n.bk-root .bk-caret.bk-down,\\n.bk-root .bk-caret.bk-up {\\n border-right: 4px solid transparent;\\n border-left: 4px solid transparent;\\n}\\n.bk-root .bk-caret.bk-left {\\n border-right: 4px solid;\\n}\\n.bk-root .bk-caret.bk-right {\\n border-left: 4px solid;\\n}\\n.bk-root .bk-caret.bk-left,\\n.bk-root .bk-caret.bk-right {\\n border-top: 4px solid transparent;\\n border-bottom: 4px solid transparent;\\n}\\n\"},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default='\\n.bk-root .bk-tabs-header {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n overflow: hidden;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group {\\n height: auto;\\n margin-right: 5px;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\\n flex-grow: 0;\\n -webkit-flex-grow: 0;\\n height: auto;\\n padding: 4px 4px;\\n}\\n.bk-root .bk-tabs-header .bk-headers-wrapper {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n overflow: hidden;\\n color: #666666;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\\n border-bottom: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\\n border-left: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\\n border-top: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\\n border-right: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-above,\\n.bk-root .bk-tabs-header.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers,\\n.bk-root .bk-tabs-header.bk-below .bk-headers {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-left,\\n.bk-root .bk-tabs-header.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers,\\n.bk-root .bk-tabs-header.bk-right .bk-headers {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header .bk-headers {\\n position: relative;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n}\\n.bk-root .bk-tabs-header .bk-tab {\\n padding: 4px 8px;\\n border: solid transparent;\\n white-space: nowrap;\\n cursor: pointer;\\n}\\n.bk-root .bk-tabs-header .bk-tab:hover {\\n background-color: #f2f2f2;\\n}\\n.bk-root .bk-tabs-header .bk-tab.bk-active {\\n color: #4d4d4d;\\n background-color: white;\\n border-color: #e6e6e6;\\n}\\n.bk-root .bk-tabs-header .bk-tab .bk-close {\\n margin-left: 10px;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-tab {\\n border-width: 3px 1px 0px 1px;\\n border-radius: 4px 4px 0 0;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-tab {\\n border-width: 1px 3px 1px 0px;\\n border-radius: 0 4px 4px 0;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-tab {\\n border-width: 0px 1px 3px 1px;\\n border-radius: 0 0 4px 4px;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-tab {\\n border-width: 1px 0px 1px 3px;\\n border-radius: 4px 0 0 4px;\\n}\\n.bk-root .bk-close {\\n display: inline-block;\\n width: 10px;\\n height: 10px;\\n vertical-align: middle;\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n.bk-root .bk-close:hover {\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n'},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__=\"WidgetBoxView\";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__=\"WidgetBox\",n.init_WidgetBox()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w(\"Asterisk\",v,n.AsteriskGL),o.CircleCross=w(\"CircleCross\",f,n.CircleCrossGL),o.CircleDot=w(\"CircleDot\",T),o.CircleY=w(\"CircleY\",z),o.CircleX=w(\"CircleX\",C,n.CircleXGL),o.Cross=w(\"Cross\",k,n.CrossGL),o.Dash=w(\"Dash\",Y),o.Diamond=w(\"Diamond\",m,n.DiamondGL),o.DiamondCross=w(\"DiamondCross\",h,n.DiamondCrossGL),o.DiamondDot=w(\"DiamondDot\",q),o.Dot=w(\"Dot\",P),o.Hex=w(\"Hex\",D,n.HexGL),o.HexDot=w(\"HexDot\",g),o.InvertedTriangle=w(\"InvertedTriangle\",S,n.InvertedTriangleGL),o.Plus=w(\"Plus\",G),o.Square=w(\"Square\",L,n.SquareGL),o.SquareCross=w(\"SquareCross\",p,n.SquareCrossGL),o.SquareDot=w(\"SquareDot\",x),o.SquarePin=w(\"SquarePin\",M),o.SquareX=w(\"SquareX\",I,n.SquareXGL),o.Triangle=w(\"Triangle\",y,n.TriangleGL),o.TriangleDot=w(\"TriangleDot\",X),o.TrianglePin=w(\"TrianglePin\",H),o.X=w(\"X\",A,n.XGL),o.Y=w(\"Y\",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},\n", - " function _(e,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if(\"h\"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;enew r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error(\"api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.\")}}i.GMapPlot=u,u.__name__=\"GMapPlot\",u.init_GMapPlot()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([[\"outline_\",o.Line],[\"background_\",o.Fill],[\"border_\",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,\"right\"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:\"\"})],title_location:[n.Location,\"above\"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,\"canvas\"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,\"standard\"]}),this.override({outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,\"reset\");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__=\"Plot\",f.init_Plot()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null},_=t=>\"tap\"==t||\"pan\"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,\"auto\"],active_inspect:[s.Any,\"auto\"],active_scroll:[s.Any,\"auto\"],active_tap:[s.Any,\"auto\"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];\"auto\"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__=\"Toolbar\",h.init_Toolbar()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__=\"InspectToolView\";class l extends s.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__=\"InspectTool\",l.init_InspectTool()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,i=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:\"auto\",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on(\"tap\",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on(\"press\",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,\"data:image\")?this.el.style.backgroundImage=\"url('\"+t+\"')\":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{right:e,top:o};case\"left\":return{left:i,top:o};case\"above\":return{left:e,top:s};case\"below\":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__=\"ButtonToolButtonView\";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__=\"ButtonToolView\";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__=\"ButtonTool\",b.init_ButtonTool()},\n", - " function _(t,e,n){\n", - " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", - " * http://hammerjs.github.io/\n", - " *\n", - " * Copyright (c) 2016 Jorik Tangelder;\n", - " * Licensed under the MIT license */\n", - " !function(t,n,i,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=n.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(null==t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),n=1;n-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;in[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit(\"hammer.input\",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl=\"mousedown\",this.evWin=\"mousemove mouseup\",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:\"mouse\",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:\"touch\",3:\"pen\",4:\"mouse\",5:\"kinect\"},B=\"pointerdown\",$=\"pointermove pointerup pointercancel\";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B=\"MSPointerDown\",$=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace(\"ms\",\"\"),r=G[i],s=Z[t.pointerType]||t.pointerType,o=\"touch\"==s,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget=\"touchstart\",this.evWin=\"touchstart touchmove touchend touchcancel\",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),\"identifier\",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:\"touch\",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget=\"touchstart touchmove touchend touchcancel\",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[\"auto\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distancee.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[\"manipulation\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__=\"ToolView\";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case\"width\":return t+\" (x-axis)\";case\"height\":return t+\" (y-axis)\";case\"both\":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;\"width\"==a||\"both\"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return\"height\"==a||\"both\"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}i.Tool=_,_.__name__=\"Tool\",_.init_Tool()},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_toolbar=\"bk-toolbar\",t.bk_toolbar_hidden=\"bk-toolbar-hidden\",t.bk_toolbar_button=\"bk-toolbar-button\",t.bk_button_bar=\"bk-button-bar\",t.bk_toolbar_button_custom_action=\"bk-toolbar-button-custom-action\"},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-toolbar-hidden {\\n visibility: hidden;\\n opacity: 0;\\n transition: visibility 0.3s linear, opacity 0.3s linear;\\n}\\n.bk-root .bk-toolbar,\\n.bk-root .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-toolbar .bk-logo {\\n flex-shrink: 0;\\n -webkit-flex-shrink: 0;\\n}\\n.bk-root .bk-toolbar.bk-above,\\n.bk-root .bk-toolbar.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n justify-content: flex-end;\\n -webkit-justify-content: flex-end;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-logo,\\n.bk-root .bk-toolbar.bk-below .bk-logo {\\n order: 1;\\n -webkit-order: 1;\\n margin-left: 5px;\\n margin-right: 0px;\\n}\\n.bk-root .bk-toolbar.bk-left,\\n.bk-root .bk-toolbar.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n justify-content: flex-start;\\n -webkit-justify-content: flex-start;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-logo,\\n.bk-root .bk-toolbar.bk-right .bk-logo {\\n order: 0;\\n -webkit-order: 0;\\n margin-bottom: 5px;\\n margin-top: 0px;\\n}\\n.bk-root .bk-toolbar-button {\\n width: 30px;\\n height: 30px;\\n cursor: pointer;\\n background-size: 60% 60%;\\n background-origin: border-box;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-toolbar-button:hover {\\n background-color: rgba(192, 192, 192, 0.15);\\n}\\n.bk-root .bk-toolbar-button:focus {\\n outline: none;\\n}\\n.bk-root .bk-toolbar-button::-moz-focus-inner {\\n border: 0;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\\n border-bottom: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\\n border-bottom-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\\n border-top: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\\n border-top-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\\n border-left: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\\n border-left-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\\n border-right: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\\n border-right-color: #26aae1;\\n}\\n.bk-root .bk-button-bar + .bk-button-bar:before {\\n content: \" \";\\n display: inline-block;\\n background-color: lightgray;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\\n height: 10px;\\n width: 1px;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\\n height: 1px;\\n width: 10px;\\n}\\n'},\n", - " function _(A,g,C){Object.defineProperty(C,\"__esModule\",{value:!0});C.default='\\n.bk-root .bk-tool-icon-copy-to-clipboard {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-replace-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-append-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-intersect-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-subtract-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-clear-selection {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-box-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-box-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-zoom-in {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-zoom-out {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-help {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-hover {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-crosshair {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-lasso-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-pan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-xpan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-ypan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-range {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-polygon-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-redo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-reset {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-save {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-tap-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-undo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-wheel-pan {\\n background-image: url(\"data:image/png;base64,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\");\\n}\\n.bk-root .bk-tool-icon-wheel-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-box-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-freehand-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-point-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-line-edit {\\n background-image: url(\"data:image/png;base64,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\");\\n}\\n'},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+\"px\":\"\",this.el.style.top=null!=t.top?t.top-i.top+\"px\":\"\",this.el.style.right=null!=t.right?i.right-t.right+\"px\":\"\",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+\"px\":\"\"}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:\"vertical\";s.classes(this.el).add(\"bk-context-menu\",\"bk-\"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:[\"bk-menu-icon\",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?\"bk-active\":null,title:t.tooltip},i,t.label)}}n.addEventListener(\"click\",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__=\"ContextMenu\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__=\"OnOffButtonView\"},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__=\"ToolbarViewModel\",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[...super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t=\"grey\"===this.model.logo?f.bk_grey:null,o=l.a({href:\"https://bokeh.org/\",target:\"_blank\",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__=\"ToolbarBaseView\";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,\"normal\"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,\"right\"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,s.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__=\"ToolbarBase\",B.init_ToolbarBase()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__=\"GestureToolView\";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__=\"GestureTool\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__=\"ActionToolButtonView\";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__=\"ActionToolView\";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,\"do\")}}n.ActionTool=l,l.__name__=\"ActionTool\"},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__=\"HelpToolView\";class r extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,\"Click the question mark to learn more about Bokeh plot tools.\"],redirect:[s.String,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}),this.register_alias(\"help\",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__=\"HelpTool\",r.init_HelpTool()},\n", - " function _(o,_,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tool_icon_box_select=\"bk-tool-icon-box-select\",l.bk_tool_icon_box_zoom=\"bk-tool-icon-box-zoom\",l.bk_tool_icon_zoom_in=\"bk-tool-icon-zoom-in\",l.bk_tool_icon_zoom_out=\"bk-tool-icon-zoom-out\",l.bk_tool_icon_help=\"bk-tool-icon-help\",l.bk_tool_icon_hover=\"bk-tool-icon-hover\",l.bk_tool_icon_crosshair=\"bk-tool-icon-crosshair\",l.bk_tool_icon_lasso_select=\"bk-tool-icon-lasso-select\",l.bk_tool_icon_pan=\"bk-tool-icon-pan\",l.bk_tool_icon_xpan=\"bk-tool-icon-xpan\",l.bk_tool_icon_ypan=\"bk-tool-icon-ypan\",l.bk_tool_icon_range=\"bk-tool-icon-range\",l.bk_tool_icon_polygon_select=\"bk-tool-icon-polygon-select\",l.bk_tool_icon_redo=\"bk-tool-icon-redo\",l.bk_tool_icon_reset=\"bk-tool-icon-reset\",l.bk_tool_icon_save=\"bk-tool-icon-save\",l.bk_tool_icon_tap_select=\"bk-tool-icon-tap-select\",l.bk_tool_icon_undo=\"bk-tool-icon-undo\",l.bk_tool_icon_wheel_pan=\"bk-tool-icon-wheel-pan\",l.bk_tool_icon_wheel_zoom=\"bk-tool-icon-wheel-zoom\",l.bk_tool_icon_box_edit=\"bk-tool-icon-box-edit\",l.bk_tool_icon_freehand_draw=\"bk-tool-icon-freehand-draw\",l.bk_tool_icon_poly_draw=\"bk-tool-icon-poly-draw\",l.bk_tool_icon_point_draw=\"bk-tool-icon-point-draw\",l.bk_tool_icon_poly_edit=\"bk-tool-icon-poly-edit\",l.bk_tool_icon_line_edit=\"bk-tool-icon-line-edit\"},\n", - " function _(o,l,b){Object.defineProperty(b,\"__esModule\",{value:!0}),b.bk_logo=\"bk-logo\",b.bk_logo_notebook=\"bk-logo-notebook\",b.bk_logo_small=\"bk-logo-small\",b.bk_grey=\"bk-grey\"},\n", - " function _(l,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n.bk-root .bk-logo {\\n margin: 5px;\\n position: relative;\\n display: block;\\n background-repeat: no-repeat;\\n}\\n.bk-root .bk-logo.bk-grey {\\n filter: url(\\\"data:image/svg+xml;utf8,#grayscale\\\");\\n /* Firefox 10+, Firefox on Android */\\n filter: gray;\\n /* IE6-9 */\\n -webkit-filter: grayscale(100%);\\n /* Chrome 19+, Safari 6+, Safari 6+ iOS */\\n}\\n.bk-root .bk-logo-small {\\n width: 20px;\\n height: 20px;\\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\\n}\\n.bk-root .bk-logo-notebook {\\n display: inline-block;\\n vertical-align: middle;\\n margin-right: 5px;\\n}\\n\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&\"function\"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);nt)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){\"standard\"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,\"state_changed\"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:\"fixed\",width:t}:{width_policy:\"fit\"}),null!=e?{height_policy:\"fixed\",height:e}:{height_policy:\"fit\"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case\"above\":return i;case\"below\":return s;case\"left\":return n;case\"right\":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i=\"above\"==t||\"below\"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:\"min\"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(a=new M.Column(e),a.set_sizing({width_policy:\"min\",height_policy:\"max\"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p(\"above\",i)),g.children=p(\"below\",s),m.children=w.reversed(p(\"left\",n)),O.children=p(\"right\",a),b.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),g.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),m.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t=\"default\"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&\"auto\"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(...t,...e,...i,...s,...n,...a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(...t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug(\"initial ranges set\")):g.logger.warn(\"could not set initial ranges\")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace(\"PlotView.paint() for \"+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if(\"overlay\"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,\"image\",s,!0),this._paint_levels(n.ctx,\"underlay\",s,!0),this._paint_levels(n.ctx,\"glyph\",s,!0),this._paint_levels(n.ctx,\"guide\",s,!1),this._paint_levels(n.ctx,\"annotation\",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,\"overlay\",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(...i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i=\"png\"==t?\"canvas\":\"svg\",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,[\"children\"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>\"bbox\"in t);return Object.assign(Object.assign({},i),{children:[...e,...n]})}}i.PlotView=k,k.__name__=\"PlotView\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__=\"BokehEvent\";class o extends a{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__=\"ModelEvent\";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__=\"DocumentReady\",s.DocumentReady=r=n([_(\"document_ready\")],r);let c=class extends o{};s.ButtonClick=c,c.__name__=\"ButtonClick\",s.ButtonClick=c=n([_(\"button_click\")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__=\"MenuItemClick\",s.MenuItemClick=l=n([_(\"menu_item_click\")],l);class i extends o{}s.UIEvent=i,i.__name__=\"UIEvent\";let u=class extends i{};s.LODStart=u,u.__name__=\"LODStart\",s.LODStart=u=n([_(\"lodstart\")],u);let d=class extends i{};s.LODEnd=d,d.__name__=\"LODEnd\",s.LODEnd=d=n([_(\"lodend\")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__=\"SelectionGeometry\",s.SelectionGeometry=h=n([_(\"selectiongeometry\")],h);let m=class extends i{};s.Reset=m,m.__name__=\"Reset\",s.Reset=m=n([_(\"reset\")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__=\"PointEvent\";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__=\"Pan\",s.Pan=p=n([_(\"pan\")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__=\"Pinch\",s.Pinch=j=n([_(\"pinch\")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__=\"Rotate\",s.Rotate=y=n([_(\"rotate\")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__=\"MouseWheel\",s.MouseWheel=P=n([_(\"wheel\")],P);let v=class extends x{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=n([_(\"mousemove\")],v);let O=class extends x{};s.MouseEnter=O,O.__name__=\"MouseEnter\",s.MouseEnter=O=n([_(\"mouseenter\")],O);let b=class extends x{};s.MouseLeave=b,b.__name__=\"MouseLeave\",s.MouseLeave=b=n([_(\"mouseleave\")],b);let g=class extends x{};s.Tap=g,g.__name__=\"Tap\",s.Tap=g=n([_(\"tap\")],g);let E=class extends x{};s.DoubleTap=E,E.__name__=\"DoubleTap\",s.DoubleTap=E=n([_(\"doubletap\")],E);let M=class extends x{};s.Press=M,M.__name__=\"Press\",s.Press=M=n([_(\"press\")],M);let R=class extends x{};s.PressUp=R,R.__name__=\"PressUp\",s.PressUp=R=n([_(\"pressup\")],R);let f=class extends x{};s.PanStart=f,f.__name__=\"PanStart\",s.PanStart=f=n([_(\"panstart\")],f);let S=class extends x{};s.PanEnd=S,S.__name__=\"PanEnd\",s.PanEnd=S=n([_(\"panend\")],S);let D=class extends x{};s.PinchStart=D,D.__name__=\"PinchStart\",s.PinchStart=D=n([_(\"pinchstart\")],D);let k=class extends x{};s.PinchEnd=k,k.__name__=\"PinchEnd\",s.PinchEnd=k=n([_(\"pinchend\")],k);let L=class extends x{};s.RotateStart=L,L.__name__=\"RotateStart\",s.RotateStart=L=n([_(\"rotatestart\")],L);let C=class extends x{};s.RotateEnd=C,C.__name__=\"RotateEnd\",s.RotateEnd=C=n([_(\"rotateend\")],C)},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,\"pan:start\"),this.pan=new r.Signal(this,\"pan\"),this.pan_end=new r.Signal(this,\"pan:end\"),this.pinch_start=new r.Signal(this,\"pinch:start\"),this.pinch=new r.Signal(this,\"pinch\"),this.pinch_end=new r.Signal(this,\"pinch:end\"),this.rotate_start=new r.Signal(this,\"rotate:start\"),this.rotate=new r.Signal(this,\"rotate\"),this.rotate_end=new r.Signal(this,\"rotate:end\"),this.tap=new r.Signal(this,\"tap\"),this.doubletap=new r.Signal(this,\"doubletap\"),this.press=new r.Signal(this,\"press\"),this.pressup=new r.Signal(this,\"pressup\"),this.move_enter=new r.Signal(this,\"move:enter\"),this.move=new r.Signal(this,\"move\"),this.move_exit=new r.Signal(this,\"move:exit\"),this.scroll=new r.Signal(this,\"scroll\"),this.keydown=new r.Signal(this,\"keydown\"),this.keyup=new r.Signal(this,\"keyup\"),this.hammer=new i.default(this.hit_area,{touchAction:\"auto\",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",t=>this._mouse_move(t)),this.hit_area.addEventListener(\"mouseenter\",t=>this._mouse_enter(t)),this.hit_area.addEventListener(\"mouseleave\",t=>this._mouse_exit(t)),this.hit_area.addEventListener(\"contextmenu\",t=>this._context_menu(t)),this.hit_area.addEventListener(\"wheel\",t=>this._mouse_wheel(t)),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",t=>this._doubletap(t)),this.hammer.on(\"tap\",t=>this._tap(t)),this.hammer.on(\"press\",t=>this._press(t)),this.hammer.on(\"pressup\",t=>this._pressup(t)),this.hammer.get(\"pan\").set({direction:i.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",t=>this._pan_start(t)),this.hammer.on(\"pan\",t=>this._pan(t)),this.hammer.on(\"panend\",t=>this._pan_end(t)),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",t=>this._pinch_start(t)),this.hammer.on(\"pinch\",t=>this._pinch(t)),this.hammer.on(\"pinchend\",t=>this._pinch_end(t)),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",t=>this._rotate_start(t)),this.hammer.on(\"rotate\",t=>this._rotate(t)),this.hammer.on(\"rotateend\",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(\"unsupported event_type: \"+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(a.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if((\"annotation\"==s||\"overlay\"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(\":\")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case\"move\":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _=\"default\";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_=\"crosshair\")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case\"tap\":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case\"scroll\":{const i=n[p.is_mobile?\"pinch\":\"scroll\"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case\"pan\":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case\"wheel\":return new _.MouseWheel(e,s,n,i,t.delta);case\"mousemove\":return new _.MouseMove(e,s,n,i);case\"mouseenter\":return new _.MouseEnter(e,s,n,i);case\"mouseleave\":return new _.MouseLeave(e,s,n,i);case\"tap\":return new _.Tap(e,s,n,i);case\"doubletap\":return new _.DoubleTap(e,s,n,i);case\"press\":return new _.Press(e,s,n,i);case\"pressup\":return new _.PressUp(e,s,n,i);case\"pan\":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case\"panstart\":return new _.PanStart(e,s,n,i);case\"panend\":return new _.PanEnd(e,s,n,i);case\"pinch\":return new _.Pinch(e,s,n,i,t.scale);case\"pinchstart\":return new _.PinchStart(e,s,n,i);case\"pinchend\":return new _.PinchEnd(e,s,n,i);case\"rotate\":return new _.Rotate(e,s,n,i,t.rotation);case\"rotatestart\":return new _.RotateStart(e,s,n,i);case\"rotateend\":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__=\"UIEvents\"},\n", - " function _(e,t,n){\n", - " /*!\n", - " * jQuery Mousewheel 3.1.13\n", - " *\n", - " * Copyright jQuery Foundation and other contributors\n", - " * Released under the MIT license\n", - " * http://jquery.org/license\n", - " */\n", - " function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,\"__esModule\",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},\n", - " function _(n,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=(\"undefined\"!=typeof window?window.requestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.webkitRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.mozRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__=\"BorderLayout\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h=\"left\",s=\"center\",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"alphabetic\",vertical:\"middle\"},below:{justified:\"bottom\",parallel:\"hanging\",normal:\"middle\",horizontal:\"hanging\",vertical:\"middle\"},left:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"},right:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:\"right\",horizontal:\"right\",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:\"right\",below:h,left:\"right\",right:h},m={above:h,below:\"right\",left:\"right\",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case\"above\":this._dim=0,this._normals=[0,-1];break;case\"below\":this._dim=0,this._normals=[0,1];break;case\"left\":this._dim=1,this._normals=[-1,0];break;case\"right\":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:\"max\",height_policy:\"fixed\"}):this.set_sizing({width_policy:\"fixed\",height_policy:\"max\"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l=\"middle\",a=c[e]):(l=\"middle\",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__=\"SidePanel\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},\"gmaps_ready\");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,\"undefined\"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement(\"script\");e.type=\"text/javascript\",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,\"bounds_changed\",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,\"tilesloaded\",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center(\"lat\")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center(\"lng\")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+\"px\",this.map_el.style.left=t+\"px\",this.map_el.style.width=i+\"px\",this.map_el.style.height=o+\"px\"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__=\"GMapPlotView\"},\n", - " function _(a,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},\n", - " function _(a,e,l){Object.defineProperty(l,\"__esModule\",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__=\"ServerSentDataSource\"},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case\"replace\":this.data=s;break;case\"append\":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,\"replace\"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__=\"WebDataSource\",n.init_WebDataSource()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,\"application/json\"],http_headers:[o.Any,{}],method:[o.HTTPMethod,\"POST\"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",()=>this.do_load(s,t,e)),s.addEventListener(\"error\",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__=\"AjaxDataSource\",d.init_AjaxDataSource()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const a=n.reduce(r);for(let e=0;ethis.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__=\"MercatorTileSource\",l.init_MercatorTileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,\"\"],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,\"\"],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=a,a.__name__=\"TileSource\",a.init_TileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace(\"{Q}\",c)}}r.QUADKEYTileSource=s,s.__name__=\"QUADKEYTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:\"absolute\",right:s+\"px\",bottom:_+\"px\",\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__=\"TileRendererView\";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__=\"TileRenderer\",b.init_TileRenderer()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",_.toString())}}r.WMTSTileSource=s,s.__name__=\"WMTSTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.bk_tile_attribution=\"bk-tile-attribution\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default=\"\\n.bk-root .bk-tile-attribution a {\\n color: black;\\n}\\n\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=c,c.__name__=\"TMSTileSource\"},\n", - " function _(e,r,a){Object.defineProperty(a,\"__esModule\",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){return r=>{const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__=\"CanvasTexture\",a.init_CanvasTexture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,\"repeat\"]})}onload(e){e()}}i.Texture=_,_.__name__=\"Texture\",_.init_Texture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__=\"ImageURLTexture\",o.init_ImageURLTexture()},\n", - " function _(o,l,T){Object.defineProperty(T,\"__esModule\",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__=\"CustomActionButtonView\";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__=\"CustomActionView\";class u extends s.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,\"Perform a Custom Action\"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__=\"CustomAction\",u.init_CustomAction()},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__=\"RedoToolView\";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name=\"Redo\",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias(\"redo\",()=>new _)}}t.RedoTool=_,_.__name__=\"RedoTool\",_.init_RedoTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__=\"ResetToolView\";class l extends s.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias(\"reset\",()=>new l)}}o.ResetTool=l,l.__name__=\"ResetTool\",l.init_ResetTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=n,n.__name__=\"SaveToolView\";class s extends a.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias(\"save\",()=>new s)}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=s,s.__name__=\"SaveTool\",s.init_SaveTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__=\"UndoToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias(\"undo\",()=>new _)}}e.UndoTool=_,_.__name__=\"UndoTool\",_.init_UndoTool()},\n", - " function _(o,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias(\"zoom_in\",()=>new t({dimensions:\"both\"})),this.register_alias(\"xzoom_in\",()=>new t({dimensions:\"width\"})),this.register_alias(\"yzoom_in\",()=>new t({dimensions:\"height\"}))}}e.ZoomInTool=t,t.__name__=\"ZoomInTool\",t.init_ZoomInTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e=\"width\"==t||\"both\"==t,i=\"height\"==t||\"both\"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state(\"zoom_out\",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__=\"ZoomBaseToolView\";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__=\"ZoomBaseTool\",a.init_ZoomBaseTool()},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},\n", - " function _(o,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias(\"zoom_out\",()=>new n({dimensions:\"both\"})),this.register_alias(\"xzoom_out\",()=>new n({dimensions:\"width\"})),this.register_alias(\"yzoom_out\",()=>new n({dimensions:\"height\"}))}}i.ZoomOutTool=n,n.__name__=\"ZoomOutTool\",n.init_ZoomOutTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?\"append\":!t&&o?\"intersect\":t&&o?\"subtract\":void r.unreachable():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;ethis._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__=\"PolyDrawToolView\";class l extends n.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.bk_tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__=\"PolyDrawTool\",l.init_PolyDrawTool()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,\"replace\",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__=\"PolyToolView\";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__=\"PolyTool\",l.init_PolyTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,\"replace\",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__=\"PolyEditToolView\";class l extends _.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=d.bk_tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__=\"PolyEditTool\",l.init_PolyEditTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const _={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__=\"BoxSelectToolView\";const r=()=>new l.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=n.bk_tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,\"both\"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_select\",()=>new h),this.register_alias(\"xbox_select\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_select\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__=\"BoxSelectTool\",h.init_BoxSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case\"point\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case\"poly\":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__=\"SelectToolView\";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,\"clear\")}static init_SelectTool(){this.define({renderers:[l.Any,\"auto\"],names:[l.Array,[]],mode:[l.Any,\"replace\"]})}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__=\"SelectTool\",u.init_SelectTool()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u=\"auto\"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew n.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=a.bk_tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,\"both\"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_zoom\",()=>new h({dimensions:\"both\"})),this.register_alias(\"xbox_zoom\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_zoom\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__=\"BoxZoomTool\",h.init_BoxZoomTool()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"lasso_select\",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:\"poly\",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__=\"LassoSelectToolView\";class h extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Lasso Select\",this.icon=c.bk_tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"lasso_select\",()=>new h)}}t.LassoSelectTool=h,h.__name__=\"LassoSelectTool\",h.init_LassoSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:\"poly\",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__=\"PolySelectToolView\",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=n.bk_tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"poly_select\",()=>new y)}}s.PolySelectTool=y,y.__name__=\"PolySelectTool\",y.init_PolySelectTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,\"replace\",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__=\"LineEditToolView\";class o extends n.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=_.bk_tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__=\"LineEditTool\",o.init_LineEditTool()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__=\"LineToolView\";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__=\"LineTool\",r.init_LineTool()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(st.end)&&(this.v_axis_only=!0),(ei.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state(\"pan\",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__=\"PanToolView\";class l extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,\"both\"]}),this.register_alias(\"pan\",()=>new l({dimensions:\"both\"})),this.register_alias(\"xpan\",()=>new l({dimensions:\"width\"})),this.register_alias(\"ypan\",()=>new l({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(\"Pan\",this.dimensions)}get icon(){switch(this.dimensions){case\"both\":return a.bk_tool_icon_pan;case\"width\":return a.bk_tool_icon_xpan;case\"height\":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__=\"PanTool\",l.init_PanTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const m=()=>new n.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=o.bk_tool_icon_range,this.event_type=\"pan\",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__=\"RangeTool\",v.init_RangeTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__=\"TapToolView\";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=n.bk_tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,\"select\"],callback:[c.Any]}),this.register_alias(\"click\",()=>new _({behavior:\"inspect\"})),this.register_alias(\"tap\",()=>new _)}}s.TapTool=_,_.__name__=\"TapTool\",_.init_TapTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case\"width\":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error(\"this shouldn't have happened\")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state(\"wheel_pan\",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__=\"WheelPanToolView\";class h extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=a.bk_tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,\"width\"]}),this.internal({speed:[n.Number,.001]}),this.register_alias(\"xwheel_pan\",()=>new h({dimension:\"width\"})),this.register_alias(\"ywheel_pan\",()=>new h({dimension:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__=\"WheelPanTool\",h.init_WheelPanTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=(\"width\"==_||\"both\"==_)&&t.startnew m({dimensions:\"both\"})),this.register_alias(\"xwheel_zoom\",()=>new m({dimensions:\"width\"})),this.register_alias(\"ywheel_zoom\",()=>new m({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__=\"WheelZoomTool\",m.init_WheelZoomTool()},\n", - " function _(i,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;\"width\"!=e&&\"both\"!=e||(this.model.spans.width.location=s),\"height\"!=e&&\"both\"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__=\"CrosshairToolView\";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,\"both\"],line_color:[l.Color,\"black\"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias(\"crosshair\",()=>new _)}get tooltip(){return this._get_dim_tooltip(\"Crosshair\",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:\"width\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:\"height\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__=\"CrosshairTool\",_.init_CrosshairTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,\"\"]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(...a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,t,s)}}s.CustomJSHover=u,u.__name__=\"CustomJSHover\",u.init_CustomJSHover()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if(\"span\"==t.type)\"h\"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if(\"mouse\"==this.model.mode)s={type:\"point\",sx:e,sy:t};else{s={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if(\"ignore\"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case\"interp\":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case\"prev\":[[o,n],m]=g(y.sx,y.sy,s);break;case\"next\":[[o,n],m]=g(y.sx,y.sy,s+1);break;case\"nearest\":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if(\"snap_to_data\"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point(\"center\",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case\"interp\":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case\"prev\":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case\"next\":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case\"nearest\":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error(\"should't have happened\")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[s]of e){const e=d.div({style:{display:\"table-row\"}});t.appendChild(e);const o=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_label},0!=s.length?s+\": \":\"\");e.appendChild(o);const n=d.span();n.dataset.value=\"\";const i=d.span({class:v.bk_tooltip_color_block},\" \");i.dataset.swatch=\"\",d.undisplay(i);const r=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll(\"[data-value]\"),l=i.querySelectorAll(\"[data-swatch]\"),c=/\\$color(\\[.*\\])?:(\\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e=\"\",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+\" unknown\";continue}const a=e.indexOf(\"hex\")>=0,_=e.indexOf(\"swatch\")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent=\"(null)\";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace(\"$~\",\"$data_\"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__=\"HoverToolView\";class k extends n.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[p.Any,{}],renderers:[p.Any,\"auto\"],names:[p.Array,[]],mode:[p.HoverMode,\"mouse\"],muted_policy:[p.MutedPolicy,\"show\"],point_policy:[p.PointPolicy,\"snap_to_data\"],line_policy:[p.LinePolicy,\"nearest\"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,\"center\"],attachment:[p.TooltipAttachment,\"horizontal\"],callback:[p.Any]}),this.register_alias(\"hover\",()=>new k)}}s.HoverTool=k,k.__name__=\"HoverTool\",k.init_HoverTool()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__=\"ToolProxy\",r.init_ToolProxy()},\n", - " function _(o,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(...i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if(\"multi\"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__=\"ProxyToolbar\",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}}s.ToolbarBoxView=_,_.__name__=\"ToolbarBoxView\";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,\"right\"]})}}s.ToolbarBox=p,p.__name__=\"ToolbarBox\",p.init_ToolbarBox()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[...u.values()]}},\n", - " function _(e,o,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(`Error rendering Bokeh model: could not find #${e} HTML tag`);if(!document.body.contains(o))throw new Error(`Error rendering Bokeh model: element #${e} must be under `);if(\"SCRIPT\"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},\n", - " function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e=\"ws:\";return\"https:\"==window.location.protocol&&(e=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),e+\"//\"+t.host+n+\"/ws\"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return c.add_document_standalone(d.document,t,a,i)}},\n", - " function _(e,s,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let l=0;function _(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(\".\")[0],t.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=\"\"+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+=\"?\"+this.args_string),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error(\"websocket creation failed to url: \"+this.url),t.logger.error(\" - \"+e),e}}close(){this.closed_permanently||(t.logger.debug(\"Permanently closing websocket connection \"+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,\"close method called on ClientConnection \"+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)},e)}send(e){if(null==this.socket)throw new Error(\"not connected so cannot send \"+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if(\"ERROR\"===s.msgtype())throw new Error(\"Error reply \"+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(`Sending ${i.events.length} changes from model construction back to server`);const e=r.Message.create(\"PATCH-DOC\",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error(\"Failed to repull session \"+e),s(e)}}_on_open(e,s){t.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach(e=>e.reject(\"Disconnected\")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){t.logger.debug(\"Websocket error on socket \"+this._number);const s=\"Could not open websocket\";t.logger.error(\"Failed to connect to Bokeh server: \"+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error(\"Closing connection: \"+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(\"too many buffers received, expecting \"+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=n,n.__name__=\"Message\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__=\"Receiver\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):c.logger.debug(\"Doing nothing with message \"+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create(\"PATCH-DOC\",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace(\"Unhandled OK reply to \"+e.reqid())}_handle_error(e){c.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=i,i.__name__=\"ClientSession\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e=\"function\"==typeof __values?__values(e):e[Symbol.iterator](),o={},n(\"next\"),n(\"throw\"),n(\"return\"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info(\"Registering Jupyter comms for target \"+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info(\"Registering Jupyter comms for target \"+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){l.logger.info(\"Registering Google Colab comms for target \"+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info(\"Registering Google Colab comms for target \"+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n/* notebook specific tweaks so no black outline and matching padding\\n/* can't be wrapped inside bk-root. here are the offending jupyter lines:\\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 */\\n.rendered_html .bk-root .bk-tooltip table,\\n.rendered_html .bk-root .bk-tooltip tr,\\n.rendered_html .bk-root .bk-tooltip th,\\n.rendered_html .bk-root .bk-tooltip td {\\n border: none;\\n padding: 1px;\\n}\\n\"},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},\n", - " function _(e,t,n){function s(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,\"__esModule\",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",()=>r.removeChild(t));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName(\"body\")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},\n", - " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/callback\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/eq\":25,\"core/util/data_structures\":26,\"core/settings\":27,\"core/property_mixins\":28,\"core/util/string\":29,\"core/util/ndarray\":30,\"core/util/serialization\":31,\"core/util/compat\":32,\"core/util/pretty\":33,\"models/index\":34,\"models/annotations/index\":35,\"models/annotations/annotation\":36,\"core/util/projections\":37,\"models/renderers/renderer\":70,\"core/view\":71,\"core/dom\":72,\"styles/root.css\":73,\"core/visuals\":74,\"core/util/svg\":75,\"core/util/affine\":76,\"models/canvas/canvas\":77,\"core/dom_view\":78,\"core/util/bbox\":79,\"core/util/canvas\":80,\"model\":81,\"models/canvas/coordinates\":82,\"models/annotations/arrow\":83,\"models/annotations/arrow_head\":84,\"models/sources/column_data_source\":85,\"models/sources/columnar_data_source\":86,\"models/sources/data_source\":87,\"models/selections/selection\":88,\"core/selection_manager\":89,\"models/renderers/glyph_renderer\":90,\"models/renderers/data_renderer\":91,\"models/glyphs/line\":92,\"models/glyphs/xy_glyph\":93,\"models/glyphs/glyph\":94,\"core/util/spatial\":95,\"models/ranges/factor_range\":98,\"models/ranges/range\":99,\"models/glyphs/utils\":100,\"core/hittest\":101,\"models/glyphs/webgl/line\":102,\"models/glyphs/webgl/utils/index\":103,\"models/glyphs/webgl/utils/program\":104,\"models/glyphs/webgl/utils/buffer\":105,\"models/glyphs/webgl/utils/texture\":106,\"models/glyphs/webgl/base\":107,\"models/glyphs/webgl/line.vert\":108,\"models/glyphs/webgl/line.frag\":109,\"models/glyphs/patch\":110,\"models/glyphs/harea\":111,\"models/glyphs/area\":112,\"models/glyphs/varea\":113,\"models/sources/cds_view\":114,\"core/build_views\":115,\"models/renderers/graph_renderer\":116,\"models/graphs/graph_hit_test_policy\":117,\"models/selections/interaction_policy\":118,\"core/util/typed_array\":119,\"core/util/set\":120,\"document/events\":121,\"models/annotations/band\":122,\"models/annotations/upper_lower\":123,\"models/annotations/box_annotation\":124,\"models/annotations/color_bar\":125,\"models/tickers/basic_ticker\":126,\"models/tickers/adaptive_ticker\":127,\"models/tickers/continuous_ticker\":128,\"models/tickers/ticker\":129,\"models/formatters/basic_tick_formatter\":130,\"models/formatters/tick_formatter\":131,\"models/mappers/index\":132,\"models/mappers/categorical_color_mapper\":133,\"models/mappers/categorical_mapper\":134,\"models/mappers/color_mapper\":135,\"models/mappers/mapper\":136,\"models/transforms/transform\":137,\"models/mappers/categorical_marker_mapper\":138,\"models/mappers/categorical_pattern_mapper\":139,\"models/mappers/continuous_color_mapper\":140,\"models/mappers/linear_color_mapper\":141,\"models/mappers/log_color_mapper\":142,\"models/mappers/scanning_color_mapper\":143,\"models/mappers/eqhist_color_mapper\":144,\"models/scales/linear_scale\":145,\"models/scales/continuous_scale\":146,\"models/scales/scale\":147,\"models/transforms/index\":148,\"models/transforms/customjs_transform\":149,\"models/transforms/dodge\":150,\"models/transforms/range_transform\":151,\"models/transforms/interpolator\":152,\"models/transforms/jitter\":153,\"models/transforms/linear_interpolator\":154,\"models/transforms/step_interpolator\":155,\"models/scales/linear_interpolation_scale\":156,\"models/scales/log_scale\":157,\"models/ranges/range1d\":158,\"core/util/text\":159,\"models/annotations/label\":160,\"models/annotations/text_annotation\":161,\"models/annotations/label_set\":162,\"models/annotations/legend\":163,\"models/annotations/legend_item\":164,\"core/vectorization\":165,\"models/annotations/poly_annotation\":166,\"models/annotations/slope\":167,\"models/annotations/span\":168,\"models/annotations/title\":169,\"models/annotations/toolbar_panel\":170,\"models/annotations/tooltip\":171,\"styles/tooltips\":172,\"styles/mixins\":173,\"styles/tooltips.css\":174,\"models/annotations/whisker\":175,\"models/axes/index\":176,\"models/axes/axis\":177,\"models/renderers/guide_renderer\":178,\"models/axes/categorical_axis\":179,\"models/tickers/categorical_ticker\":180,\"models/formatters/categorical_tick_formatter\":181,\"models/axes/continuous_axis\":182,\"models/axes/datetime_axis\":183,\"models/axes/linear_axis\":184,\"models/formatters/datetime_tick_formatter\":185,\"core/util/templating\":187,\"models/tickers/datetime_ticker\":190,\"models/tickers/composite_ticker\":191,\"models/tickers/days_ticker\":192,\"models/tickers/single_interval_ticker\":193,\"models/tickers/util\":194,\"models/tickers/months_ticker\":195,\"models/tickers/years_ticker\":196,\"models/axes/log_axis\":197,\"models/formatters/log_tick_formatter\":198,\"models/tickers/log_ticker\":199,\"models/axes/mercator_axis\":200,\"models/formatters/mercator_tick_formatter\":201,\"models/tickers/mercator_ticker\":202,\"models/callbacks/index\":203,\"models/callbacks/customjs\":204,\"models/callbacks/callback\":205,\"models/callbacks/open_url\":206,\"models/canvas/index\":207,\"models/canvas/cartesian_frame\":208,\"models/scales/categorical_scale\":209,\"models/ranges/data_range1d\":210,\"models/ranges/data_range\":211,\"core/layout/index\":212,\"core/layout/types\":213,\"core/layout/layoutable\":214,\"core/layout/alignments\":215,\"core/layout/grid\":216,\"core/layout/html\":217,\"models/expressions/index\":218,\"models/expressions/expression\":219,\"models/expressions/stack\":220,\"models/expressions/cumsum\":221,\"models/filters/index\":222,\"models/filters/boolean_filter\":223,\"models/filters/filter\":224,\"models/filters/customjs_filter\":225,\"models/filters/group_filter\":226,\"models/filters/index_filter\":227,\"models/formatters/index\":228,\"models/formatters/func_tick_formatter\":229,\"models/formatters/numeral_tick_formatter\":230,\"models/formatters/printf_tick_formatter\":231,\"models/glyphs/index\":232,\"models/glyphs/annular_wedge\":233,\"models/glyphs/annulus\":234,\"models/glyphs/arc\":235,\"models/glyphs/bezier\":236,\"models/glyphs/circle\":237,\"models/glyphs/webgl/markers\":238,\"models/glyphs/webgl/markers.vert\":239,\"models/glyphs/webgl/markers.frag\":240,\"models/glyphs/center_rotatable\":241,\"models/glyphs/ellipse\":242,\"models/glyphs/ellipse_oval\":243,\"models/glyphs/hbar\":244,\"models/glyphs/box\":245,\"models/glyphs/hex_tile\":246,\"models/glyphs/image\":247,\"models/glyphs/image_base\":248,\"models/glyphs/image_rgba\":249,\"models/glyphs/image_url\":250,\"core/util/image\":251,\"models/glyphs/multi_line\":252,\"models/glyphs/multi_polygons\":253,\"models/glyphs/oval\":254,\"models/glyphs/patches\":255,\"models/glyphs/quad\":256,\"models/glyphs/quadratic\":257,\"models/glyphs/ray\":258,\"models/glyphs/rect\":259,\"models/glyphs/segment\":260,\"models/glyphs/step\":261,\"models/glyphs/text\":262,\"models/glyphs/vbar\":263,\"models/glyphs/wedge\":264,\"models/graphs/index\":265,\"models/graphs/layout_provider\":266,\"models/graphs/static_layout_provider\":267,\"models/grids/index\":268,\"models/grids/grid\":269,\"models/layouts/index\":270,\"models/layouts/box\":271,\"models/layouts/layout_dom\":272,\"styles/root\":273,\"models/layouts/column\":274,\"models/layouts/grid_box\":275,\"models/layouts/html_box\":276,\"models/layouts/row\":277,\"models/layouts/spacer\":278,\"models/layouts/tabs\":279,\"styles/tabs\":280,\"styles/buttons\":281,\"styles/menus\":282,\"styles/buttons.css\":283,\"styles/menus.css\":284,\"styles/tabs.css\":285,\"models/layouts/widget_box\":286,\"models/markers/index\":287,\"models/markers/defs\":288,\"models/markers/marker\":289,\"models/markers/scatter\":290,\"models/plots/index\":291,\"models/plots/gmap_plot\":292,\"models/plots/plot\":293,\"models/tools/toolbar\":294,\"models/tools/inspectors/inspect_tool\":295,\"models/tools/button_tool\":296,\"models/tools/tool\":298,\"styles/toolbar\":299,\"styles/toolbar.css\":300,\"styles/icons.css\":301,\"core/util/menus\":302,\"core/util/iterator\":303,\"models/tools/on_off_button\":304,\"models/tools/toolbar_base\":305,\"models/tools/gestures/gesture_tool\":306,\"models/tools/actions/action_tool\":307,\"models/tools/actions/help_tool\":308,\"styles/icons\":309,\"styles/logo\":310,\"styles/logo.css\":311,\"models/plots/plot_canvas\":312,\"core/bokeh_events\":313,\"core/ui_events\":314,\"core/util/wheel\":315,\"core/util/throttle\":316,\"core/layout/border\":317,\"core/layout/side_panel\":318,\"models/plots/gmap_plot_canvas\":319,\"models/ranges/index\":320,\"models/renderers/index\":321,\"models/scales/index\":322,\"models/selections/index\":323,\"models/sources/index\":324,\"models/sources/server_sent_data_source\":325,\"models/sources/web_data_source\":326,\"models/sources/ajax_data_source\":327,\"models/sources/geojson_data_source\":328,\"models/tickers/index\":329,\"models/tickers/fixed_ticker\":330,\"models/tiles/index\":331,\"models/tiles/bbox_tile_source\":332,\"models/tiles/mercator_tile_source\":333,\"models/tiles/tile_source\":334,\"models/tiles/tile_utils\":335,\"models/tiles/quadkey_tile_source\":336,\"models/tiles/tile_renderer\":337,\"models/tiles/wmts_tile_source\":338,\"styles/tiles\":339,\"styles/tiles.css\":340,\"models/tiles/tms_tile_source\":341,\"models/textures/index\":342,\"models/textures/canvas_texture\":343,\"models/textures/texture\":344,\"models/textures/image_url_texture\":345,\"models/tools/index\":346,\"models/tools/actions/custom_action\":347,\"models/tools/actions/redo_tool\":348,\"models/tools/actions/reset_tool\":349,\"models/tools/actions/save_tool\":350,\"models/tools/actions/undo_tool\":351,\"models/tools/actions/zoom_in_tool\":352,\"models/tools/actions/zoom_base_tool\":353,\"core/util/zoom\":354,\"models/tools/actions/zoom_out_tool\":355,\"models/tools/edit/edit_tool\":356,\"models/tools/edit/box_edit_tool\":357,\"models/tools/edit/freehand_draw_tool\":358,\"models/tools/edit/point_draw_tool\":359,\"models/tools/edit/poly_draw_tool\":360,\"models/tools/edit/poly_tool\":361,\"models/tools/edit/poly_edit_tool\":362,\"models/tools/gestures/box_select_tool\":363,\"models/tools/gestures/select_tool\":364,\"models/tools/util\":365,\"models/tools/gestures/box_zoom_tool\":366,\"models/tools/gestures/lasso_select_tool\":367,\"models/tools/gestures/poly_select_tool\":368,\"models/tools/edit/line_edit_tool\":369,\"models/tools/edit/line_tool\":370,\"models/tools/gestures/pan_tool\":371,\"models/tools/gestures/range_tool\":372,\"models/tools/gestures/tap_tool\":373,\"models/tools/gestures/wheel_pan_tool\":374,\"models/tools/gestures/wheel_zoom_tool\":375,\"models/tools/inspectors/crosshair_tool\":376,\"models/tools/inspectors/customjs_hover\":377,\"models/tools/inspectors/hover_tool\":378,\"models/tools/tool_proxy\":379,\"models/tools/toolbar_box\":380,\"embed/standalone\":381,\"embed/dom\":382,\"embed/server\":383,\"client/connection\":384,\"protocol/message\":385,\"protocol/receiver\":386,\"client/session\":387,\"embed/notebook\":388,\"styles/notebook.css\":389,\"protocol/index\":390,\"testing\":391,\"safely\":392}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-widgets.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 402: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},\n", - " 403: function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},\n", - " 404: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),c.default]}_render_button(...t){return o.button({type:\"button\",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__=\"AbstractButtonView\";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,\"Button\"],icon:[s.Instance],button_type:[s.ButtonType,\"default\"]})}}n.AbstractButton=a,a.__name__=\"AbstractButton\",a.init_AbstractButton()},\n", - " 405: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,\"disabled\",this.model.disabled)})}}o.ControlView=i,i.__name__=\"ControlView\";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__=\"Control\"},\n", - " 472: function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return\"horizontal\"==this.model.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.model.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,\"horizontal\"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__=\"Widget\",s.init_Widget()},\n", - " 407: function _(e,t,c){Object.defineProperty(c,\"__esModule\",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__=\"AbstractIconView\";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__=\"AbstractIcon\"},\n", - " 408: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",e=>this._keydown(e)),this.input_el.addEventListener(\"keyup\",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener(\"click\",e=>this._menu_click(e)),this.menu.addEventListener(\"mouseover\",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__=\"AutocompleteInput\",a.init_AutocompleteInput()},\n", - " 409: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:\"text\",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"input\",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__=\"TextInputView\";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,\"\"],value_input:[p.String,\"\"],placeholder:[p.String,\"\"]})}}i.TextInput=h,h.__name__=\"TextInput\",h.init_TextInput()},\n", - " 410: function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[...super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?\"none\":\"\"}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__=\"InputWidgetView\";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,\"\"]})}}i.InputWidget=u,u.__name__=\"InputWidget\",u.init_InputWidget()},\n", - " 411: function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-input {\\n display: inline-block;\\n width: 100%;\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n min-height: 31px;\\n padding: 0 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n}\\n.bk-root .bk-input:focus {\\n border-color: #66afe9;\\n outline: 0;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\\n}\\n.bk-root .bk-input::placeholder,\\n.bk-root .bk-input:-ms-input-placeholder,\\n.bk-root .bk-input::-moz-placeholder,\\n.bk-root .bk-input::-webkit-input-placeholder {\\n color: #999;\\n opacity: 1;\\n}\\n.bk-root .bk-input[disabled] {\\n cursor: not-allowed;\\n background-color: #eee;\\n opacity: 1;\\n}\\n.bk-root select:not([multiple]).bk-input,\\n.bk-root select:not([size]).bk-input {\\n height: auto;\\n appearance: none;\\n -webkit-appearance: none;\\n background-image: url(\\'data:image/svg+xml;utf8,\\');\\n background-position: right 0.5em center;\\n background-size: 8px 6px;\\n background-repeat: no-repeat;\\n}\\n.bk-root select[multiple].bk-input,\\n.bk-root select[size].bk-input,\\n.bk-root textarea.bk-input {\\n height: auto;\\n}\\n.bk-root .bk-input-group {\\n width: 100%;\\n height: 100%;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: start;\\n -webkit-align-items: start;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n white-space: nowrap;\\n}\\n.bk-root .bk-input-group.bk-inline {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\\n margin-left: 5px;\\n}\\n.bk-root .bk-input-group input[type=\"checkbox\"] + span,\\n.bk-root .bk-input-group input[type=\"radio\"] + span {\\n position: relative;\\n top: -2px;\\n margin-left: 3px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper {\\n display: inherit;\\n width: inherit;\\n height: inherit;\\n position: relative;\\n overflow: hidden;\\n padding: 0;\\n vertical-align: middle;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper input {\\n padding-right: 20px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\\n position: absolute;\\n display: block;\\n height: 50%;\\n min-height: 0;\\n min-width: 0;\\n width: 30px;\\n padding: 0;\\n margin: 0;\\n right: 0;\\n border: none;\\n background: none;\\n cursor: pointer;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\\n content: \"\";\\n display: inline-block;\\n transform: translateY(-50%);\\n border-left: 5px solid transparent;\\n border-right: 5px solid transparent;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\\n top: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\\n border-bottom: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\\n border-bottom-color: grey;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\\n bottom: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\\n border-top: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\\n border-top-color: grey;\\n}\\n'},\n", - " 412: function _(u,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.bk_input=\"bk-input\",n.bk_input_group=\"bk-input-group\"},\n", - " 413: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__=\"ButtonView\";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:\"Button\"})}}n.Button=u,u.__name__=\"Button\",u.init_Button()},\n", - " 414: function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__=\"CheckboxButtonGroupView\";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__=\"CheckboxButtonGroup\",r.init_CheckboxButtonGroup()},\n", - " 415: function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener(\"click\",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__=\"ButtonGroupView\";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,\"default\"]})}}s.ButtonGroup=l,l.__name__=\"ButtonGroup\",l.init_ButtonGroup()},\n", - " 416: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;nthis.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}i.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__=\"CheckboxGroup\",p.init_CheckboxGroup()},\n", - " 417: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[...super.styles(),r.default]}}n.InputGroupView=u,u.__name__=\"InputGroupView\";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__=\"InputGroup\"},\n", - " 418: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:\"color\",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__=\"ColorPickerView\";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,\"#000000\"]})}}t.ColorPicker=d,d.__name__=\"ColorPicker\",d.init_ColorPicker()},\n", - " 419: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:\"text\",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__=\"DatePickerView\";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,\"auto\"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__=\"DatePicker\",h.init_DatePicker()},\n", - " 420: function _(e,t,n){\n", - " /* flatpickr v4.6.3, @license MIT */var a,i;a=this,i=function(){\"use strict\";\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation. All rights reserved.\n", - " Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use\n", - " this file except in compliance with the License. You may obtain a copy of the\n", - " License at http://www.apache.org/licenses/LICENSE-2.0\n", - " \n", - " THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n", - " KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\n", - " WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\n", - " MERCHANTABLITY OR NON-INFRINGEMENT.\n", - " \n", - " See the Apache Version 2.0 License for specific language governing permissions\n", - " and limitations under the License.\n", - " ***************************************************************************** */var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return\"th\";switch(t%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},i=function(e){return(\"0\"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||\"\",n=n||\"\",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d(\"div\",\"numInputWrapper\"),a=d(\"input\",\"numInput \"+e),i=d(\"span\",\"arrowUp\"),o=d(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?\"shorthand\":\"longhand\"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],\"i\").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split(\"\").map((function(t,n,o){return h[t]&&\"\\\\\"!==o[n-1]?h[t](e,a,i):\"\\\\\"!==t?t:\"\"})).join(\"\")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D=\"\";hr&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe(\"onChange\")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add(\"inRange\"),h.weekNumbers&&1===h.config.showMonths&&\"prevMonthDay\"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+h.config.getWeek(t)+\"\"),fe(\"onDayCreate\",o),o}function j(e){e.focus(),\"range\"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A(\"\",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d(\"div\",\"dayContainer\");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t1||\"dropdown\"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&eh.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML=\"\";for(var t=0;t<12;t++)if(e(t)){var n=d(\"option\",\"flatpickr-monthDropdown-month\");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d(\"div\",\"flatpickr-month\"),n=window.document.createDocumentFragment();h.config.showMonths>1||\"static\"===h.config.monthSelectorType?e=d(\"span\",\"cur-month\"):(h.monthsDropdownContainer=d(\"select\",\"flatpickr-monthDropdown-months\"),O(h.monthsDropdownContainer,\"change\",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe(\"onMonthChange\")})),B(),e=h.monthsDropdownContainer);var a=u(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute(\"min\",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute(\"max\",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e--;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d(\"div\",\"flatpickr-weekdays\");for(var e=h.config.showMonths;e--;){var t=d(\"div\",\"flatpickr-weekdaycontainer\");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe(\"onYearChange\"),B()),R(),fe(\"onMonthChange\"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t=\"function\"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),\"range\"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&eh.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe(\"onYearChange\"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf(\"hidden\")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe(\"onKeyDown\",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>n&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?\"startRange\":\"endRange\"),nt&&m===n&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||\"min\"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){\"object\"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error(\"flatpickr: invalid locale \"+h.config.locale)),h.l10n=e({},y.l10ns.default,\"object\"==typeof h.config.locale?h.config.locale:\"default\"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K=\"(\"+h.l10n.amPM[0]+\"|\"+h.l10n.amPM[1]+\"|\"+h.l10n.amPM[0].toLowerCase()+\"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&dn,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,\"arrowTop\",!s),c(h.calendarContainer,\"arrowBottom\",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&\"center\"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,\"rightMost\",g),!h.config.static)if(h.calendarContainer.style.top=u+\"px\",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C=\"{left:\"+l.left+\"px;right:auto;}\";c(h.calendarContainer,\"rightMost\",!1),c(h.calendarContainer,\"centerMost\",!0),v.insertRule(\".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after\"+C,b),h.calendarContainer.style.left=w+\"px\",h.calendarContainer.style.right=\"auto\"}else h.calendarContainer.style.left=\"auto\",h.calendarContainer.style.right=m+\"px\";else h.calendarContainer.style.left=f+\"px\",h.calendarContainer.style.right=\"auto\"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf(\"MSIE\")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\")&&!e.classList.contains(\"notAllowed\")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()h.currentMonth+h.config.showMonths-1)&&\"range\"!==h.config.mode;if(h.selectedDateElem=n,\"single\"===h.config.mode)h.selectedDates=[a];else if(\"multiple\"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else\"range\"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe(\"onYearChange\"),B()),fe(\"onMonthChange\")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||\"range\"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l=\"single\"===h.config.mode&&!h.config.enableTime,c=\"range\"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value=\"\",void 0!==h.altInput&&(h.altInput.value=\"\"),void 0!==h.mobileInput&&(h.mobileInput.value=\"\"),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe(\"onChange\")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove(\"open\"),void 0!==h._input&&h._input.classList.remove(\"active\")),fe(\"onClose\")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe(\"onDestroy\");for(var e=h._handlers.length;e--;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type=\"text\",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove(\"flatpickr-input\"),h.input.removeAttribute(\"readonly\"),h.input.value=\"\"),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe(\"onOpen\");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add(\"open\"),h._input.classList.add(\"active\"),fe(\"onOpen\"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe(\"onChange\")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||\"number\"==typeof e)n=[h.parseDate(e,t)];else if(\"string\"==typeof e)switch(h.config.mode){case\"single\":case\"time\":n=[h.parseDate(e,t)];break;case\"multiple\":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case\"range\":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),\"range\"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a1||\"static\"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+\" \":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYearh.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return\"range\"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join(\"range\"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):\"\"),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe(\"onValueUpdate\")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains(\"arrowUp\")?h.changeYear(h.currentYear+1):e.target.classList.contains(\"arrowDown\")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=[\"wrap\",\"weekNumbers\",\"allowInput\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,\"enable\",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,\"disable\",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):c+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}i.altInputClass||(h.config.altInputClass=h.input.className+\" \"+h.config.altInputClass),Object.defineProperty(h.config,\"minDate\",{get:function(){return h.config._minDate},set:ae(\"min\")}),Object.defineProperty(h.config,\"maxDate\",{get:function(){return h.config._maxDate},set:ae(\"max\")});var s=function(e){return function(t){h.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=h.parseDate(t,\"H:i:S\")}};Object.defineProperty(h.config,\"minTime\",{get:function(){return h.config._minTime},set:s(\"min\")}),Object.defineProperty(h.config,\"maxTime\",{get:function(){return h.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe(\"onParseConfig\")}(),ie(),h.input=h.config.wrap?f.querySelector(\"[data-input]\"):f,h.input?(h.input._type=h.input.type,h.input.type=\"text\",h.input.classList.add(\"flatpickr-input\"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type=\"text\",h.input.setAttribute(\"type\",\"hidden\"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute(\"readonly\",\"readonly\"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error(\"Invalid input element specified\")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||(\"INPUT\"!==h.input.nodeName&&\"TEXTAREA\"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,\"H:i\")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,\"H:i\")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,\"showTimeInput\",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,\"showTimeInput\",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d(\"div\",\"flatpickr-calendar\"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d(\"div\",\"flatpickr-months\"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d(\"span\",\"flatpickr-prev-month\"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d(\"span\",\"flatpickr-next-month\"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,\"_hidePrevMonthArrow\",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,\"flatpickr-disabled\",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,\"_hideNextMonthArrow\",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,\"flatpickr-disabled\",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d(\"div\",\"flatpickr-innerContainer\"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add(\"hasWeeks\");var e=d(\"div\",\"flatpickr-weekwrapper\");e.appendChild(d(\"span\",\"flatpickr-weekday\",h.l10n.weekAbbreviation));var t=d(\"div\",\"flatpickr-weeks\");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d(\"div\",\"flatpickr-rContainer\"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d(\"div\",\"flatpickr-days\"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add(\"hasTime\"),h.config.noCalendar&&h.calendarContainer.classList.add(\"noCalendar\"),h.timeContainer=d(\"div\",\"flatpickr-time\"),h.timeContainer.tabIndex=-1;var e=d(\"span\",\"flatpickr-time-separator\",\":\"),t=u(\"flatpickr-hour\",{\"aria-label\":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName(\"input\")[0];var n=u(\"flatpickr-minute\",{\"aria-label\":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName(\"input\")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute(\"step\",h.config.hourIncrement.toString()),h.minuteElement.setAttribute(\"step\",h.config.minuteIncrement.toString()),h.hourElement.setAttribute(\"min\",h.config.time_24hr?\"0\":\"1\"),h.hourElement.setAttribute(\"max\",h.config.time_24hr?\"23\":\"12\"),h.minuteElement.setAttribute(\"min\",\"0\"),h.minuteElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add(\"time24hr\"),h.config.enableSeconds){h.timeContainer.classList.add(\"hasSeconds\");var a=u(\"flatpickr-second\");h.secondElement=a.getElementsByTagName(\"input\")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute(\"step\",h.minuteElement.getAttribute(\"step\")),h.secondElement.setAttribute(\"min\",\"0\"),h.secondElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(d(\"span\",\"flatpickr-time-separator\",\":\")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d(\"span\",\"flatpickr-am-pm\",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,\"rangeMode\",\"range\"===h.config.mode),c(h.calendarContainer,\"animate\",!0===h.config.animate),c(h.calendarContainer,\"multiMonth\",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?\"inline\":\"static\"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d(\"div\",\"flatpickr-wrapper\");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(t){return O(t,\"click\",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?\"time\":\"datetime-local\":\"date\";h.mobileInput=d(\"input\",h.input.className+\" flatpickr-mobile\"),h.mobileInput.step=h.input.getAttribute(\"step\")||\"any\",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,\"Y-m-d\")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,\"Y-m-d\")),h.input.type=\"hidden\",void 0!==h.altInput&&(h.altInput.type=\"hidden\");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,\"change\",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe(\"onChange\"),fe(\"onClose\")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,\"mouseover\",(function(e){\"range\"===h.config.mode&&ee(e.target)})),O(window.document.body,\"keydown\",X),h.config.inline||h.config.static||O(window,\"resize\",e),void 0!==window.ontouchstart?O(window.document,\"touchstart\",G):O(window.document,\"mousedown\",_(G)),O(window.document,\"focus\",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,\"focus\",h.open),O(h._input,\"mousedown\",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,\"mousedown\",_(De)),O(h.monthNav,[\"keyup\",\"increment\"],S),O(h.daysContainer,\"mousedown\",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,[\"increment\"],x),O(h.timeContainer,\"blur\",x,{capture:!0}),O(h.timeContainer,\"mousedown\",_(P)),O([h.hourElement,h.minuteElement],[\"focus\",\"click\"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,\"focus\",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,\"mousedown\",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe(\"onReady\")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[...super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?\"none\":\"\",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+\": \"),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(\" .. \");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on(\"slide\",(t,e,i)=>this._slide(i)),this.noUiSlider.on(\"change\",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this.noUiSlider.on(\"start\",(t,e)=>o(e,!0)),this.noUiSlider.on(\"end\",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__=\"AbstractBaseSliderView\";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__=\"AbstractSliderView\";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__=\"AbstractRangeSliderView\";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]}))}_formatter(t,e){return\"\"+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__=\"AbstractSlider\",b.init_AbstractSlider()},\n", - " 424: function _(t,e,r){\n", - " /*! nouislider - 14.6.0 - 6/27/2020 */\n", - " var n;n=function(){\"use strict\";var t=\"14.6.0\";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function c(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function p(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if(\"number\"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' contains invalid value.\");if(!i(n=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!i(e[0]))throw new Error(\"noUiSlider (14.6.0): 'range' value isn't numeric.\");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&\"object\"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"};function y(t){if(function(t){return\"object\"==typeof t&&\"function\"==typeof t.to&&\"function\"==typeof t.from}(t))return!0;throw new Error(\"noUiSlider (14.6.0): 'format' requires 'to' and 'from' methods.\")}function E(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'step' is not numeric.\");t.singleStep=e}function C(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function N(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider (14.6.0): Missing 'min' or 'max' in 'range'.\");if(e.min===e.max)throw new Error(\"noUiSlider (14.6.0): 'range' 'min' and 'max' cannot be equal.\");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider (14.6.0): 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'snap' option must be a boolean.\")}function A(t,e){if(t.animate=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animate' option must be a boolean.\")}function V(t,e){if(t.animationDuration=e,\"number\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animationDuration' option must be a number.\")}function D(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider (14.6.0): 'padding' option must not exceed 100% of the range.\")}}function H(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider (14.6.0): 'direction' option was not recognized.\")}}function j(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider (14.6.0): 'fixed' behaviour must be used with 2 handles\");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider (14.6.0): 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute(\"data-value\",o),a.style[r.style]=t+\"%\",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if(\"range\"===t||\"steps\"===t)return y.xVal;if(\"count\"===t){if(e<2)throw new Error(\"noUiSlider (14.6.0): 'values' (>= 2) required for mode 'count'.\");var n=e-1,i=100/n;for(e=[];n--;)e[n]=n*i;e.push(100),t=\"positions\"}return\"positions\"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):\"values\"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w=\"steps\"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf(\"touch\"),s=0===t.type.indexOf(\"mouse\"),a=0===t.type.indexOf(\"pointer\");if(0===t.type.indexOf(\"MSPointer\")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor=\"\",V.removeEventListener(\"selectstart\",n))),e.handleNumbers.forEach((function(t){et(\"change\",t),et(\"set\",t),et(\"end\",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_(\"mouseout\",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener(\"selectstart\",n,!1)),e.handleNumbers.forEach((function(t){et(\"start\",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et(\"slide\",n,!0),et(\"update\",n,!0),et(\"change\",n,!0),et(\"set\",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){\"hover\"===t.split(\".\")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),\"update\"===t.split(\".\")[0]&&f.forEach((function(t,e){et(\"update\",e)}))}function tt(t){var e=t&&t.split(\".\")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(\".\")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et(\"update\",t),et(\"slide\",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n=\"translate(\"+nt(10*(ot(e,0)-D)+\"%\",\"0\")+\")\";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o=\"translate(\"+nt(ot(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+nt(i/100,\"1\")+\")\";d[t].style[r.transformRule]=o+\" \"+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:(\"number\"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,\"rtl\"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip {\\n -webkit-transform: translate(50%, 0);\\n transform: translate(50%, 0);\\n left: auto;\\n bottom: 10px;\\n}\\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\\n -webkit-transform: translate(0, -18px);\\n transform: translate(0, -18px);\\n top: auto;\\n right: 28px;\\n}\\n.bk-root .noUi-handle {\\n cursor: grab;\\n cursor: -webkit-grab;\\n}\\n.bk-root .noUi-handle.noUi-active {\\n cursor: grabbing;\\n cursor: -webkit-grabbing;\\n}\\n.bk-root .noUi-handle:after,\\n.bk-root .noUi-handle:before {\\n display: none;\\n}\\n.bk-root .noUi-tooltip {\\n display: none;\\n white-space: nowrap;\\n}\\n.bk-root .noUi-handle:hover .noUi-tooltip {\\n display: block;\\n}\\n.bk-root .noUi-horizontal {\\n width: 100%;\\n height: 10px;\\n}\\n.bk-root .noUi-vertical {\\n width: 10px;\\n height: 100%;\\n}\\n.bk-root .noUi-horizontal .noUi-handle {\\n width: 14px;\\n height: 18px;\\n right: -7px;\\n top: -5px;\\n}\\n.bk-root .noUi-vertical .noUi-handle {\\n width: 18px;\\n height: 14px;\\n right: -5px;\\n top: -7px;\\n}\\n.bk-root .noUi-target.noUi-horizontal {\\n margin: 5px 0px;\\n}\\n.bk-root .noUi-target.noUi-vertical {\\n margin: 0px 5px;\\n}\\n\"},\n", - " 427: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default=\"\\n.bk-root .bk-slider-title {\\n white-space: nowrap;\\n}\\n.bk-root .bk-slider-value {\\n font-weight: 600;\\n}\\n\"},\n", - " 428: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__=\"DateSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:\"%d %b %Y\"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__=\"DateSlider\",s.init_DateSlider()},\n", - " 429: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__=\"DivView\";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__=\"Div\",a.init_Div()},\n", - " 430: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[...super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__=\"MarkupView\";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,\"\"],style:[l.Any,{}]})}}s.Markup=o,o.__name__=\"Markup\",o.init_Markup()},\n", - " 431: function _(e,c,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.bk_clearfix=\"bk-clearfix\"},\n", - " 432: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-clearfix:before,\\n.bk-root .bk-clearfix:after {\\n content: \"\";\\n display: table;\\n}\\n.bk-root .bk-clearfix:after {\\n clear: both;\\n}\\n'},\n", - " 433: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener(\"click\",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener(\"click\",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:\"Dropdown\"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__=\"Dropdown\",m.init_Dropdown()},\n", - " 434: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement(\"input\"),this.dialogEl.type=\"file\",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&\"\"!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width=\"{this.model.width}px\",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__=\"FileInputView\";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,\"\"],mime_type:[l.Any,\"\"],filename:[l.Any,\"\"],accept:[l.String,\"\"],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__=\"FileInput\",o.init_FileInput()},\n", - " 435: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__=\"MultiSelectView\";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__=\"MultiSelect\",d.init_MultiSelect()},\n", - " 436: function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__=\"ParagraphView\";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__=\"Paragraph\",i.init_Paragraph()},\n", - " 437: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}s.PasswordInputView=r,r.__name__=\"PasswordInputView\";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__=\"PasswordInput\",p.init_PasswordInput()},\n", - " 438: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[...super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?\"solid\":\"light\",l=\"choices__item \"+i,h=\"choices__button \"+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener(\"change\",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__=\"MultiChoiceView\";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__=\"MultiChoice\",r.init_MultiChoice()},\n", - " 439: function _(e,t,i){\n", - " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", - " var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", - " /*!\n", - " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", - " *\n", - " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", - " * All Rights Reserved. Apache Software License 2.0\n", - " *\n", - " * http://www.apache.org/licenses/LICENSE-2.0\n", - " */\n", - " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function ye(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(\"[data-choice-selectable]\");else{var p=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,\"[data-choice-selectable]\",d):this.dropdown.element.querySelector(\"[data-choice-selectable]\")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;rthis.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:\"text\",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"focusout\",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter(e=>d.test(e)):\"float\"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__=\"NumericInputView\";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,\"\"],mode:[o.Any,\"int\"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):\"\"+e}}l.NumericInput=m,m.__name__=\"NumericInput\",m.init_NumericInput()},\n", - " 442: function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},\n", - " 443: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__=\"RadioButtonGroupView\";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__=\"RadioButtonGroup\",c.init_RadioButtonGroup()},\n", - " 446: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;sthis.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__=\"RadioGroupView\";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__=\"RadioGroup\",u.init_RadioGroup()},\n", - " 447: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__=\"RangeSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:\"0[.]00\"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__=\"RangeSlider\",s.init_RangeSlider()},\n", - " 448: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,...this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__=\"SelectView\";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,\"\"],options:[p.Any,[]]})}}i.Select=h,h.__name__=\"Select\",h.init_Select()},\n", - " 449: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__=\"SliderView\";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:\"0[.]00\"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__=\"Slider\",a.init_Slider()},\n", - " 450: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends s.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=r.button({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",e=>this._btn_mouse_down(e)),e.addEventListener(\"mouseup\",()=>this._btn_mouse_up()),e.addEventListener(\"mouseleave\",()=>this._btn_mouse_leave());this.input_el.addEventListener(\"keydown\",e=>this._input_key_down(e)),this.input_el.addEventListener(\"keyup\",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener(\"wheel\",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(...[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:\"float\"})}}i.Spinner=d,d.__name__=\"Spinner\",d.init_Spinner()},\n", - " 451: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__=\"TextAreaInputView\";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,\"\"],value_input:[h.String,\"\"],placeholder:[h.String,\"\"],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__=\"TextAreaInput\",p.init_TextAreaInput()},\n", - " 452: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__=\"ToggleView\";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:\"Toggle\"})}}i.Toggle=_,_.__name__=\"Toggle\",_.init_Toggle()},\n", - " }, 402, {\"models/widgets/main\":402,\"models/widgets/index\":403,\"models/widgets/abstract_button\":404,\"models/widgets/control\":405,\"models/widgets/widget\":472,\"models/widgets/abstract_icon\":407,\"models/widgets/autocomplete_input\":408,\"models/widgets/text_input\":409,\"models/widgets/input_widget\":410,\"styles/widgets/inputs.css\":411,\"styles/widgets/inputs\":412,\"models/widgets/button\":413,\"models/widgets/checkbox_button_group\":414,\"models/widgets/button_group\":415,\"models/widgets/checkbox_group\":416,\"models/widgets/input_group\":417,\"models/widgets/color_picker\":418,\"models/widgets/date_picker\":419,\"styles/widgets/flatpickr.css\":421,\"models/widgets/date_range_slider\":422,\"models/widgets/abstract_slider\":423,\"styles/widgets/sliders\":425,\"styles/widgets/nouislider.css\":426,\"styles/widgets/sliders.css\":427,\"models/widgets/date_slider\":428,\"models/widgets/div\":429,\"models/widgets/markup\":430,\"styles/clearfix\":431,\"styles/clearfix.css\":432,\"models/widgets/dropdown\":433,\"models/widgets/file_input\":434,\"models/widgets/multiselect\":435,\"models/widgets/paragraph\":436,\"models/widgets/password_input\":437,\"models/widgets/multichoice\":438,\"styles/widgets/choices.css\":440,\"models/widgets/numeric_input\":441,\"api/linalg\":442,\"core/util/random\":443,\"models/widgets/pretext\":444,\"models/widgets/radio_button_group\":445,\"models/widgets/radio_group\":446,\"models/widgets/range_slider\":447,\"models/widgets/selectbox\":448,\"models/widgets/slider\":449,\"models/widgets/spinner\":450,\"models/widgets/textarea_input\":451,\"models/widgets/toggle\":452}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh-widgets.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-tables.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 453: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},\n", - " 454: function _(a,g,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},\n", - " 455: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__=\"CellEditorView\";class o extends n.Model{}i.CellEditor=o,o.__name__=\"CellEditor\";class _ extends d{get emptyValue(){return\"\"}_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__=\"StringEditorView\";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__=\"StringEditor\",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__=\"TextEditorView\";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__=\"TextEditor\",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__=\"SelectEditorView\";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__=\"SelectEditor\",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:\"text\"})}}i.PercentEditorView=m,m.__name__=\"PercentEditorView\";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__=\"PercentEditor\",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__=\"CheckboxEditorView\";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__=\"CheckboxEditor\",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__=\"IntEditorView\";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__=\"IntEditor\",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__=\"NumberEditorView\";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__=\"NumberEditor\",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:\"text\"})}}i.TimeEditorView=I,I.__name__=\"TimeEditorView\";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__=\"TimeEditor\",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__=\"DateEditorView\";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__=\"DateEditor\",D.init_DateEditor()},\n", - " 456: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME=\"__bkdt_internal_index__\",i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):\"\"+t>\"\"+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__=\"TableDataProvider\";class x extends _.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__=\"DataTableView\";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[l(i,r),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=C,C.__name__=\"DataTable\",C.init_DataTable()},\n", - " 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&l0&&t-1 in e)}b.fn=b.prototype={jquery:\"3.5.1\",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"�\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[\"+M+\"*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[\"+M+\"*name\"+M+\"*=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name\"+M+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|\"+M+\")\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[\":\"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,\"string\"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,\"parentNode\")},parentsUntil:function(e,t,n){return C(e,\"parentNode\",n)},next:function(e){return H(e,\"nextSibling\")},prev:function(e){return H(e,\"previousSibling\")},nextAll:function(e){return C(e,\"nextSibling\")},prevAll:function(e){return C(e,\"previousSibling\")},nextUntil:function(e,t,n){return C(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return C(e,\"previousSibling\",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,\"template\")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\\x20\\t\\r\\n\\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",b.Callbacks(\"memory\"),b.Callbacks(\"memory\"),2],[\"resolve\",\"done\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener(\"DOMContentLoaded\",F),e.removeEventListener(\"load\",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&--b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener(\"DOMContentLoaded\",F),e.addEventListener(\"load\",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks(\"once memory\").add((function(){G.remove(e,[t+\"queue\",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,he=/^$|^module$|\\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(fe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),fe.setAttribute(\"checked\",\"checked\"),fe.setAttribute(\"name\",\"t\"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML=\"\",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=\"\",d.option=!!ce.lastChild;var ge={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n\",\"\"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||\"\")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function ke(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,\"events\")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function qe(e,t){return k(e,\"table\")&&k(11!==t.nodeType?t:t.firstChild,\"tr\")&&b(e).children(\"tbody\")[0]||e}function Le(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function He(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,\"script\"),Le)).length;f0&&ye(a,!u&&ve(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n3,ne.removeChild(t)),s}}))}();var ze=[\"Webkit\",\"Moz\",\"ms\"],Ue=v.createElement(\"div\").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n--;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^--/,Qe={position:\"absolute\",visibility:\"hidden\",display:\"block\"},Je={letterSpacing:\"0\",fontWeight:\"400\"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||\"px\"):t}function Ze(e,t,n,r,i,o){var a=\"width\"===t?1:0,s=0,u=0;if(n===(r?\"border\":\"content\"))return 0;for(;a<4;a+=2)\"margin\"===n&&(u+=b.css(e,n+te[a],!0,i)),r?(\"content\"===n&&(u-=b.css(e,\"padding\"+te[a],!0,i)),\"margin\"!==n&&(u-=b.css(e,\"border\"+te[a]+\"Width\",!0,i))):(u+=b.css(e,\"padding\"+te[a],!0,i),\"padding\"!==n?u+=b.css(e,\"border\"+te[a]+\"Width\",!0,i):s+=b.css(e,\"border\"+te[a]+\"Width\",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===b.css(e,\"boxSizing\",!1,r),o=i,a=$e(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===b.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===b.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),\"normal\"===i&&t in Je&&(i=Je[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each([\"height\",\"width\"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===b.css(e,\"boxSizing\",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,\"border\",!1,o)-.5)),u&&(i=ee.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,\"marginLeft\"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),b.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?\"\":\"px\")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=te[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&k(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(\" \")}function vt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function yt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,\"tabindex\");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=vt(this))&&G.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":G.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+gt(vt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var mt=/\\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(mt,\"\"):null==n?\"\":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,\"value\");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each([\"radio\",\"checkbox\"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[b.expando]?t:new b.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,\"events\")||Object.create(null))[t.type]&&G.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\\?/;b.parseXML=function(t){var n;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){n=void 0}return n&&!n.getElementsByTagName(\"parsererror\").length||b.error(\"Invalid XML: \"+t),n};var Et=/\\[\\]$/,St=/\\r?\\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)Nt(e+\"[\"+i+\"]\",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join(\"&\")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,\"elements\");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(\":disabled\")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,\"\\r\\n\")}})):{name:t.name,value:n.replace(St,\"\\r\\n\")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\\/\\//,Pt={},Rt={},Mt=\"*/\".concat(\"*\"),It=v.createElement(\"a\");function Wt(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Mt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks(\"once memory\"),x=d.statusCode||{},w={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+\"\").replace(Ot,wt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(O)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+\"//\"+It.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Dt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Ct.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,\"$1\"),p=(Ct.test(i)?\"&\":\"?\")+\"_=\"+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",b.lastModified[i]),b.etag[i]&&E.setRequestHeader(\"If-None-Match\",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Mt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray(\"script\",d.dataTypes)>-1&&(d.converters[\"text script\"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(b.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(b.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--b.active||b.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,\"json\")},getScript:function(e,t){return b.get(e,void 0,t,\"script\")}}),b.each([\"get\",\"post\"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&\"withCredentials\"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),b.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b(\"" - ], - "text/plain": [ - ":DynamicMap [block]\n", - " :Overlay\n", - " .RGB.I :RGB [Date,energy(kWh/hh)] (R,G,B,A)\n", - " .RGB.II :RGB [Date,energy(kWh/hh)] (R,G,B,A)" - ] - }, - "execution_count": 16, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "1001" - } - }, - "output_type": "execute_result" - } - ], - "source": [ - "# # Show split\n", - "scatter = dynspread(datashade(hv.Curve(df_train, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='blue'))\n", - "scatter *= dynspread(datashade(hv.Curve(df_test, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='red'))\n", - "scatter = scatter.opts(plot=dict(width=800))\n", - "scatter" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-19T07:26:08.140247Z", - "start_time": "2020-10-19T07:26:08.085737Z" - } - }, - "source": [ - "### Dataset" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:55.588516Z", - "start_time": "2020-10-24T01:46:54.767202Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - ", , , , , , , , , , , ])>\n", - ", , , , , , , , , , , ])>\n" - ] - } - ], - "source": [ - "\n", - "# ### Dataset\n", - "# These are the columns that we wont know in the future\n", - "# We need to blank them out in x_future\n", - "columns_blank=['visibility',\n", - " 'windBearing', 'temperature', 'dewPoint', 'pressure',\n", - " 'apparentTemperature', 'windSpeed', 'humidity']\n", - "df_trains = [d.resample(freq).first().ffill().dropna() for _,d in df_train.groupby('block')]\n", - "df_tests = [d.resample(freq).first().ffill().dropna() for _,d in df_test.groupby('block')]\n", - "ds_train = Seq2SeqDataSets(df_trains,\n", - " window_past=window_past,\n", - " window_future=window_future,\n", - " columns_blank=columns_blank)\n", - "ds_test = Seq2SeqDataSets(df_tests,\n", - " window_past=window_past,\n", - " window_future=window_future,\n", - " columns_blank=columns_blank)\n", - "print(ds_train)\n", - "print(ds_test)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:55.684387Z", - "start_time": "2020-10-24T01:46:55.593721Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "data": { - "text/plain": [ - "[array([[ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -2. , 1. ],\n", - " [ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -1.9791666 , 1. ],\n", - " [ 1.0853493 , -0.9875229 , 1.0307775 , ..., 0. ,\n", - " -1.9583334 , 1. ],\n", - " ...,\n", - " [ 1.0853493 , -0.87347955, 1.0307775 , ..., 0. ,\n", - " -0.0625 , 1. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " -0.04166667, 1. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " -0.02083333, 1. ]], dtype=float32),\n", - " array([[ 0.21577835],\n", - " [ 0.15010113],\n", - " [ 0.13095824],\n", - " [ 0.02481639],\n", - " [ 0.02030303],\n", - " [-0.0716762 ],\n", - " [ 0.15803841],\n", - " [ 0.02917414],\n", - " [-0.0674741 ],\n", - " [ 0.20052628],\n", - " [ 0.19009887],\n", - " [ 0.6498394 ],\n", - " [ 1.2491828 ],\n", - " [ 1.628461 ],\n", - " [ 1.5388163 ],\n", - " [ 1.9378599 ],\n", - " [ 1.5101798 ],\n", - " [ 1.8061942 ],\n", - " [ 1.569943 ],\n", - " [ 1.4147766 ],\n", - " [ 1.5297896 ],\n", - " [ 0.9147271 ],\n", - " [ 0.5668869 ],\n", - " [ 0.6613563 ],\n", - " [ 0.8767526 ],\n", - " [ 1.2315964 ],\n", - " [ 1.4297174 ],\n", - " [ 1.279687 ],\n", - " [ 1.4004583 ],\n", - " [ 1.1357263 ],\n", - " [ 0.991143 ],\n", - " [ 1.7546796 ],\n", - " [ 1.8547517 ],\n", - " [ 2.5337794 ],\n", - " [ 2.6925254 ],\n", - " [ 3.1499314 ],\n", - " [ 3.0293155 ],\n", - " [ 3.4837644 ],\n", - " [ 3.7531657 ],\n", - " [ 3.8403203 ],\n", - " [ 3.7007172 ],\n", - " [ 2.7031083 ],\n", - " [ 3.0036361 ],\n", - " [ 2.3289661 ],\n", - " [ 1.6462032 ],\n", - " [ 1.4122865 ],\n", - " [ 1.1221862 ],\n", - " [ 0.47366259],\n", - " [ 0.43179724],\n", - " [ 0.1378061 ],\n", - " [ 0.10450058],\n", - " [ 0.05890007],\n", - " [-0.01922781],\n", - " [ 0.01361078],\n", - " [ 0.25001764],\n", - " [ 0.20379458],\n", - " [ 0.15912783],\n", - " [ 0.03804521],\n", - " [ 0.0112763 ],\n", - " [ 0.40020368],\n", - " [ 0.9962789 ],\n", - " [ 1.5427071 ],\n", - " [ 1.4130647 ],\n", - " [ 1.1237426 ],\n", - " [ 1.6356201 ],\n", - " [ 2.0203454 ],\n", - " [ 1.6363983 ],\n", - " [ 1.2048274 ],\n", - " [ 1.2031155 ],\n", - " [ 1.6057385 ],\n", - " [ 1.4756292 ],\n", - " [ 0.93324745],\n", - " [ 1.3648183 ],\n", - " [ 2.0363758 ],\n", - " [ 1.6476039 ],\n", - " [ 2.2405665 ],\n", - " [ 2.4416447 ],\n", - " [ 2.1408055 ],\n", - " [ 1.6493158 ],\n", - " [ 2.2284272 ],\n", - " [ 2.4018025 ],\n", - " [ 2.8567183 ],\n", - " [ 2.898895 ],\n", - " [ 3.9316769 ],\n", - " [ 3.660097 ],\n", - " [ 3.2076712 ],\n", - " [ 3.409839 ],\n", - " [ 3.2286818 ],\n", - " [ 3.0336733 ],\n", - " [ 2.8353965 ],\n", - " [ 2.9273758 ],\n", - " [ 2.1327126 ],\n", - " [ 1.6311067 ],\n", - " [ 1.6121196 ],\n", - " [ 0.8972962 ],\n", - " [ 0.5648636 ]], dtype=float32),\n", - " array([[ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0. , 0. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0.02083333, 0. ],\n", - " [ 1.0853493 , -0.75943613, 1.0307775 , ..., 0. ,\n", - " 0.04166667, 0. ],\n", - " ...,\n", - " [ 1.0853493 , -0.6453928 , 1.0307775 , ..., 0. ,\n", - " 1.9166666 , 0. ],\n", - " [ 1.0853493 , -0.6453928 , 1.0307775 , ..., 0. ,\n", - " 1.9375 , 0. ],\n", - " [ 1.0853493 , -0.5313494 , 1.0912782 , ..., 0. ,\n", - " 1.9583334 , 0. ]], dtype=float32),\n", - " array([[ 1.9492349e-01],\n", - " [ 7.5397186e-02],\n", - " [ 2.3336489e-01],\n", - " [ 1.2053080e-01],\n", - " [ 2.2355998e-01],\n", - " [ 2.9982027e-01],\n", - " [ 1.5866096e-01],\n", - " [ 1.1866322e-01],\n", - " [ 1.0512313e-01],\n", - " [ 3.0122095e-01],\n", - " [ 2.1468890e-01],\n", - " [ 5.3949541e-01],\n", - " [ 8.2181406e-01],\n", - " [ 1.5501775e+00],\n", - " [ 1.8349863e+00],\n", - " [ 1.6644123e+00],\n", - " [ 2.1366036e+00],\n", - " [ 2.1674187e+00],\n", - " [ 1.9316344e+00],\n", - " [ 1.8812094e+00],\n", - " [ 2.2492819e+00],\n", - " [ 2.3697419e+00],\n", - " [ 1.8332744e+00],\n", - " [ 1.7370930e+00],\n", - " [ 2.1202619e+00],\n", - " [ 2.6394544e+00],\n", - " [ 2.0871119e+00],\n", - " [ 1.7694647e+00],\n", - " [ 2.0368426e+00],\n", - " [ 2.1297555e+00],\n", - " [ 2.0472701e+00],\n", - " [ 3.0395873e+00],\n", - " [ 3.2934251e+00],\n", - " [ 3.4733372e+00],\n", - " [ 3.8921461e+00],\n", - " [ 3.5867937e+00],\n", - " [ 3.4696019e+00],\n", - " [ 3.4269586e+00],\n", - " [ 2.8092501e+00],\n", - " [ 2.9440286e+00],\n", - " [ 2.4144087e+00],\n", - " [ 2.0331073e+00],\n", - " [ 2.2208011e+00],\n", - " [ 1.8822988e+00],\n", - " [ 1.5588930e+00],\n", - " [ 1.4409230e+00],\n", - " [ 1.1388389e+00],\n", - " [ 1.0885694e+00],\n", - " [ 5.5381370e-01],\n", - " [ 3.4310017e-02],\n", - " [ 1.3157757e-03],\n", - " [-1.2521403e-01],\n", - " [-7.3855065e-02],\n", - " [-1.2101193e-01],\n", - " [ 3.9912798e-02],\n", - " [ 1.2270970e-01],\n", - " [ 4.5204341e-02],\n", - " [-1.2677038e-01],\n", - " [-1.6115144e-02],\n", - " [ 2.1842413e-01],\n", - " [ 5.3249198e-01],\n", - " [ 4.2136979e-01],\n", - " [ 7.1224833e-01],\n", - " [ 1.4854342e+00],\n", - " [ 1.8214462e+00],\n", - " [ 1.6490046e+00],\n", - " [ 2.0604987e+00],\n", - " [ 2.0366869e+00],\n", - " [ 1.6323519e+00],\n", - " [ 1.3979683e+00],\n", - " [ 1.3878522e+00],\n", - " [ 1.4852785e+00],\n", - " [ 1.5033319e+00],\n", - " [ 1.9745893e+00],\n", - " [ 2.0606544e+00],\n", - " [ 1.8254926e+00],\n", - " [ 1.8941269e+00],\n", - " [ 2.4310615e+00],\n", - " [ 2.7108901e+00],\n", - " [ 2.6917472e+00],\n", - " [ 2.9974108e+00],\n", - " [ 3.7825804e+00],\n", - " [ 3.2772393e+00],\n", - " [ 3.5678065e+00],\n", - " [ 3.8865433e+00],\n", - " [ 3.7761993e+00],\n", - " [ 3.8535490e+00],\n", - " [ 3.9933076e+00],\n", - " [ 3.0651112e+00],\n", - " [ 2.7614708e+00],\n", - " [ 2.6290269e+00],\n", - " [ 2.4046037e+00],\n", - " [ 1.4166442e+00],\n", - " [ 1.4624003e+00],\n", - " [ 9.4772130e-01]], dtype=float32)]" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# we can treat it like an array\n", - "ds_train[0]\n", - "len(ds_train)\n", - "ds_train[-1]" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.156810Z", - "start_time": "2020-10-24T01:46:55.689275Z" - } - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
monthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholidayblocktsp_daysis_past
Date
2013-11-08 17:00:001.085349-0.873481.0307770.794583-0.9999620.500561-0.2051970.700950-0.3508090.160852-0.928594-0.347889-0.5393441.037935-0.1500440.0-0.1041671.0
2013-11-08 17:30:001.085349-0.873481.0307770.7945831.0000380.500561-0.2051970.700950-0.3508090.160852-0.928594-0.347889-0.5393441.037935-0.1500440.0-0.0833331.0
2013-11-08 18:00:001.085349-0.873481.0307770.939042-0.9999620.5005610.1769350.919905-0.3491120.139362-0.896675-0.4420380.0345631.037935-0.1500440.0-0.0625001.0
2013-11-08 18:30:001.085349-0.873481.0307770.9390421.0000380.5005610.1769350.919905-0.3491120.139362-0.896675-0.4420380.0345631.037935-0.1500440.0-0.0416671.0
2013-11-08 19:00:001.085349-0.873481.0307771.083500-0.9999620.5005610.1186440.952749-0.391543-0.048187-0.821312-0.5179190.2708770.680856-0.1500440.0-0.0208331.0
\n", - "
" - ], - "text/plain": [ - " month day week hour minute \\\n", - "Date \n", - "2013-11-08 17:00:00 1.085349 -0.87348 1.030777 0.794583 -0.999962 \n", - "2013-11-08 17:30:00 1.085349 -0.87348 1.030777 0.794583 1.000038 \n", - "2013-11-08 18:00:00 1.085349 -0.87348 1.030777 0.939042 -0.999962 \n", - "2013-11-08 18:30:00 1.085349 -0.87348 1.030777 0.939042 1.000038 \n", - "2013-11-08 19:00:00 1.085349 -0.87348 1.030777 1.083500 -0.999962 \n", - "\n", - " dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2013-11-08 17:00:00 0.500561 -0.205197 0.700950 -0.350809 \n", - "2013-11-08 17:30:00 0.500561 -0.205197 0.700950 -0.350809 \n", - "2013-11-08 18:00:00 0.500561 0.176935 0.919905 -0.349112 \n", - "2013-11-08 18:30:00 0.500561 0.176935 0.919905 -0.349112 \n", - "2013-11-08 19:00:00 0.500561 0.118644 0.952749 -0.391543 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2013-11-08 17:00:00 0.160852 -0.928594 -0.347889 -0.539344 \n", - "2013-11-08 17:30:00 0.160852 -0.928594 -0.347889 -0.539344 \n", - "2013-11-08 18:00:00 0.139362 -0.896675 -0.442038 0.034563 \n", - "2013-11-08 18:30:00 0.139362 -0.896675 -0.442038 0.034563 \n", - "2013-11-08 19:00:00 -0.048187 -0.821312 -0.517919 0.270877 \n", - "\n", - " humidity holiday block tsp_days is_past \n", - "Date \n", - "2013-11-08 17:00:00 1.037935 -0.150044 0.0 -0.104167 1.0 \n", - "2013-11-08 17:30:00 1.037935 -0.150044 0.0 -0.083333 1.0 \n", - "2013-11-08 18:00:00 1.037935 -0.150044 0.0 -0.062500 1.0 \n", - "2013-11-08 18:30:00 1.037935 -0.150044 0.0 -0.041667 1.0 \n", - "2013-11-08 19:00:00 0.680856 -0.150044 0.0 -0.020833 1.0 " - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAsoAAADqCAYAAAC7pWNfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAB5X0lEQVR4nO3dd3hcxfXw8e/srnrv3ZK73HG3MaYYU0MCOIE0AoSSQDAQ4Efo4U1IAsQhhATTEgIBEiAkwfRmMDa44I57ka1q9d7L7p33jyvJltVW9kpbdD7Pw4O82nvvSBppz849c47SWmuEEEIIIYQQXVjcPQAhhBBCCCE8kQTKQgghhBBC9EACZSGEEEIIIXoggbIQQgghhBA9kEBZCCGEEEKIHkigLIQQQgghRA8kUBZCCCGEEKIHtqG8mGEY3H333URHR3P33Xf3+/zCwsIhGFV3sbGxlJeXu+XaQvRH5qfwdDJHhSeT+SmOl5yc3OvnhnRF+f333yclJWUoLymEEEIIIcQJGbJAuaKigq1bt3L22WcP1SWFEEIIIYQ4YUOWevHiiy9yxRVX0NTU1OtzVq5cycqVKwF45JFHiI2NHarhdWGz2dx2bSH6I/NTeDqZo8KTyfwUAzEkgfKWLVuIiIhg1KhR7N69u9fnLV68mMWLF3f+2105RJK/JDyZzE/h6WSOCk8m81Mcr68c5SEJlPfv38/mzZvZtm0bra2tNDU18ec//5lbbrllKC4vhBA+xfhqNeQdwnLZNe4eihBC+LQhCZR/8IMf8IMf/ACA3bt3884770iQLIQQJ0hv+gK+3ohedBEqJt7dwxGC3OoWQv0txAT7uXsoQgxIaX0bva8nSx1lIYTwPrXVAOiNX7h3HEIAWmse/Cyf5V8Vu3soQgzYf/dU9Pn5Ia2jDDBp0iQmTZo01JcVYkjorzdBfBIqKdXdQxG+rDNQXg0XfNu9YxHDXnF9G1VNdr5ucdDY5iDYz+ruIQnhFK01m47U9/kcWVEWwgW01hgrXsF48iGMPz2Ibmp095CEj9JaQ00VhIZBQQ76SK67hySGub1lZjUru6HZcqTBzaMRwnnZVS1UNNr7fI4EykKcJO1woF9ejn7v3zBtDlRVoF//q7uHJXxVUwPY21ALzwWLBf3VanePSAxze8saCfG3EBFo5auCOncPRwgA9pY20uow+nzOxiP1qH7OI4GyECdBt7ViPPMo+ouPURdejuWm+1AXfAe99lP09g3uHp7wRTXV5v9TMmDiKeiNa9BG3y8GQgymvWVNZMYGMScllM1HGmjrJzgRYrBVNLZxzyd5fHSwus/nbSqoZ1xsYJ/PkUBZiJOgV70H2zegvnc9lkuvQCmF+uZ3IW0kxkvL0e25pEK4TPucUuGRqDlnQEUpHN7n3jGJYau+xUF+TSuZcUHMSwujyW6ws0RSz4R7Fde3oYGsyuZen1PR2EZWZTOzU0L7PJcEykKcBL3+cxg5DsvZ3+x8TNn8sFx7OzQ1YLz8lJlTKoSL6Noq84OIKNT0ueDvj/5qjXsHJYatfeVmfnJmbBBTE4MJtFnYkN/35ighBltZQxsA2ZUtvT5nS6GZTy+BshCDRB/JhYJs1Lwzu31OpaSjLrwctm8wV/yEcJWaYwLlwGDUtLnozV+i7X1vSBFiMOwta8KiYFxsEP5WCzOTQ/iqoA5DFgiEG5W2B8r5tS295ilvLKgnPsRGemRAn+eSQFmIE6S/+hwsFtSs03r8vBo5zvyguu8ajUIMSG0VWG0QbK6CqLlnQH0t7N3u3nGJYWlfeROjogIJtJnhxNzUUKqbHexvX2kWwh1K681A2dBmM5zjtdgNvi5uYHZKKEr1vZ1PAmUhToA2DPN298TpqPDInp8UEWX+v2MFUAhXqKmG8Mijf9wnTUfNOb0zcBZiqNgNzYHyJjLjgjofm5USis0CX0n6hXCjsoY2IgLMet7ZVd0D5R3FjbQ6NHNSw/o9lwTKQpyIrL1QWWau5vWmPVDW1RIoC9fRtdVwzJszZfPDcv3/oUZnum1MYnjKrmqm1aGZcEygHOJvZXJCCBsK6mR/hnCb0gY7E+ODCfazcLiHDX2bjtQTZLMwKT6433NJoCzECdBffQ7+AahT5vb+pNBwsFjMW+VCuEpt1dG7FUK40b72RiPHrigDzE8LpaiujS9ypaayGHqG1pQ1tJEQ6sfIqAAOH7ei3NGNb3pyCH7W/qooS6AsxIBpext681rU9HmowKBen6csFnPlr6Zy6AYnfF9NNUoCZeEB9pY1ERdsIzbYr8vjZ4+KZEJcEH/ZUERWRe/luYQYDDXNDtoMTXyIHyOjAsmtbsZhHL27caCimcomO3P6qXbRQQJlIQZq1xZorEfNPbP/50ZEozsaRAhxkrThgLrqLqkXQriD1pq9ZU1MiOt+69rPqrh7YQrhAVZ+t6aAqiapyCKGTkfFi7gQG6OiAmi2a4rqWzs/vy6vDpsFZqdKoCzEoNAbVkNYBEw8pf8ny4qycKX6OjAMCZSF25U12KlssndLu+gQGWTjvjNSqWtx8MiaI9KtTwyZjooXHSvKAIfb6ylrrVmXV8spiSGE+ludOp8EykIMgDYc6F1bUdPno6z9/5KpyGipeiFcp6Mrn6ReCDfbWmRWtZjQS6AMMCo6kFvnJ7GvvIn7V+azUeoriyHQ0WwkPtSPtIgAbBZz4ymYnfpKG+ycOqL/ahcdbIMySiF8VVEBtDTB2AnOPT8iCupq0YYDZXHu3asQverYGBougbJwn1aHwRu7KhgbE8jIqL6bNZyWHk6z3eBfO8r57eojJIf5851J0Zw9OnJoBiuGndKGNkL8LQT7ma+5aRFHN/Sty6vDqmCuE2XhOsiKshADoLMPAKAyxjl3QHgUaANqawZxVGK46Mx3j4h06vnNdoPH1haSUyUbqoTrfHCgmvJGO1eeEtdvswaAxaMjee7i0dyxIJlAm+LPG4rJq+m9tbAQJ6O0oY34kKMbTEdFBZJd2YzWmrV5dUxLDCE0wPmFKwmUhRiI7IMQHALxSU49vfMWuZSIE64wwBXlj7OqWZNTy183l0hNW+ESDa0O3thdwSlJIUxNDHH6OJtFcXpGOLfON/925vXQLU0IVyg7PlCODqCmxcHmIw2U1LexIN351WSQQFmIAdE5ByBjrFn6zRnSnU+4Um21Wb+7j7KEHdocBiv2VBJks7CrtIltRQ2DPz7h81bsraSuxcGVp8Sd0PFJYf4ooKC2td/nCjFQWmtKG+zEHRMod2zo++eOMiwKp7rxHUsCZSGcpFtboCDH+bQLOKY7n1S+EC5Q43yzkc+za6losnP7giQSQv14eXuZbKQSJ6W6yc5beys5LT2M0dGBJ3SOAJuFuBA/jtRIoCxcr77VoNludFlR7sijz65qYWpiCOEDSLsACZSFcF7eYTAM1Mixzh/TmXpRPShDEsPL8e2re+MwNP/bU8Ho6ABmp4Tyg6mxHK5qYa10ShMn4fVd5dgNzRXTTmw1uUNquD9H6iT1QrheRw3lYwPlYD8riaHmvxcMoNpFBwmUhXCSzjE38pHhfKCs/PzNnGappSxcwckV5fX5dRTWtfGdSTEopViYHk56ZAD/2lGG3ZBVZTFw9a0OVh6qYdGoCJLC/E/qXCkR/hTUtModDuFyR5uNdO0WOSo6EIuCeU42GTmWzwbKxqr3MF5+yt3DEL4k+yBEx5q1kQdCuvMJV6mtQvWzkU9rzX92V5AS7s+8NHP1xGpRXDEtlsK6Nj49JBVYxMB9mVtLq0Nz3tjIkz5XSpg/LQ5NRaN07BOudWwN5WNdNimGm+clER448KrIPhso65XvoNd8iK4oc/dQhI/Q2QdgIPnJHSKiZEVZnDRtt5ud+fpJvdha2EB2VQvfnhiN5ZjSXbNTQsmMDeL1neW0Spc0MUCfHqohPSKAMSeYm3ys1AhzRfqIbOgTLlZa30agTRHm3zW8HRUdyKJRESd0Tp8MlHVpEZQWmh9v/tLNoxG+QNfXQlnxwPKT26nwKKl6IU5eXftKcD81lD85VENssI3TM7q+KCil+MG0WCqa7LKqLAYkv6aFAxXNnD06wqm6yf1JDTc3VxXUSp6ycK3ShjbiQvxcMk87+GagvHub+UFULHrTF+4djPBKuqIU3dx09IGcgwCokSewohwZBbVVUsdWnJz2Gsr9pV7csSCJBxel4Wft/kIxNSGYzNgg/rO7gjaHzEfhnM8O12BVcMbIcJecLzLQSoifRVaUhcsdX0PZFTw+UNaV5ejiIwM7ZvdWiEtELf4m5GahSwoHaXTCF2mtMR6+E+OPD6DbzHwnnX0QlIL00QM/YUQUtLZCU6OLRyqGlY67Ev1s5vOzWhgR0XNbYaUU350SQ3mjnVXZsqos+ucwNKsO1zAzJZTIE8jv7IlSiuRwf6mlLFzu+K58rtDvrHc4HGzevJmtW7eSm5tLQ0MDISEhpKenM336dGbPno3VOrCadM7SeYcw/vhL8PPD8ujfnWryoNvaYN8O1PxFqFkL0W+8gN70Beqi7w7KGIUPKisyg5KaKvSrz6KuXGrmJyeloQKDB36+8GO68wU738lKiGPpmoF15evN9KQQxsYE8sauChaNisBmcd0tSuF7thU1UNXs4OwTzO/sTWq4PzuKZfFAuE5jm4P6VqNbxYuT1Wfk+cknn7B06VJWrlxJQkICS5Ys4frrr2fJkiUkJCTw6aefsnTpUj7++GOXDqqD8dgD0NoC1ZVwaJ9zB2XtgZZm1OQZqOhYGDNR8pTFgOhsM82CU+aiv/gYY82HkH3gxNIuOKaNteQpi5PRUYs7/OQCFqUU35sSS2lDG5/LqrLox8pDNUQEWJmVMvCyWn1JDQ+goslOY5vDpecVw1dZg1lFZUhXlIuKinj44YeJjIzs9rk5c+YAUFVVxTvvvNPnRVpbW3nwwQex2+04HA7mzZvH5Zdf3v/ogoKx3PlbjN/egd66DjV2Yr+H6F1bwWaD8VMAUHMWov/1LPpILiolvf9rCpF9APz9sfzkFxjLf4P+5zNgGHCCgTLt5eR0dSWydidOWG01BIeYtblP0szkEEZHB/DGrgrOGhmBVVaVRQ9qm+1sOlLHheOiXH7nIaW98kVhbRtjYgbnrrQYXkrrey4Nd7L6XFG+8sorewySjxUVFcWVV17Z53P8/Px48MEHWbZsGb///e/Zvn07Bw4c6H9wd/4OlToSJs1Ab13XbTOUrqs1K1wc+9jurTB2EiowCAA181RQFtnUJ5ymcw7CiDEoPz8s1/8fxMQDnFDFC+CY1Itq1wxQDE81VSeddtFBKcV3J8dSXN/G6pxal5xT+J4thQ3YDThrpGvTLgBSws1AWSpfCFfprdnIyRrQZr7GxkaysrLYtWtXl//6o5QiMNCsvehwOHA4HE6V7lAdAcqMU6GyvLPyALRvuHri/2H86mb04f3mY5XlcCQXNWnG0XOER0HmFPSmL6TqgOiXttsh7zCqvfueCgnDcvMDqAu+A6kZJ3bS4BCw+XWppawP7cPx2zvQzZKjJ5yja53ryuesOamhZEQG8N/dFTikW5/oQVmjGXh01D12paRQPyxKaikL1ylraMPPoogMdO0dCqe3sH7++ec8//zzBAYG4u9/9JdGKcWTTz7Z7/GGYXDXXXdRXFzMeeedx9ix3VfnVq5cycqVKwF45JFHiI2NNY9ddD5lL/2FwD3bCJt9KgDN61dRk5uFCgxGP/kboh5+lra8g9QC0actwtZ+LEDjWRdQ99QjRNZW4Dc6s9+x2my2zmuL4aXt8H4q21oJnzqDwI45EBsLU6af1HnLomLwb2kiov2cNf/6nOacg0TUVeOfOmJA55L5OTyV19dhGz2eSBf+7K+ZD7/8YD+7axSLxrruvDJHfUOTriEswEZyQvygnD8lIo+yZoZ8rsj89E0Hqo4wKjaE+Lg4l57X6UD51Vdf5fbbb2f69BMLGCwWC8uWLaOhoYE//OEP5OXlMWJE1wBh8eLFLF68uPPf5eXlRz85YRqNaz+l+cLLQRsYLz9jViH42T0Yv7+HigdvgdgEiIyhKjgcdcyxetQEAKo2rcUS0f8vR2xsbNdri2HD2LYJgLrYJOpdOAeMsAiaS4poKy9H2+0YG81UoOqDe7HEJQ/oXDI/hydHdQVGQJBLf/aTI81b4H9fn82USN3lTl9Tm0GQ34lVEJU56huKquqJDLQM2s8yMcTG4fL6zvPn17Tw390V3DgnkQDb4FWvlfnpeyqb7OwuruOHU0/sZ5uc3PvrsNMz0TAMpk2bNuCLHy8kJISJEyeyffv2AR2nZpwKZcWQfxi9YTUU5WO5+IeoxFQsN//S7Fq1f6dZ7eL4tI7wSAgOhaKCkx6/8HE5ByE0zHzT5UoRx3TnO7gbGurMj0uKej9GiHa6pcWsw+3C1AsAq0XxnUkxZFe1sPlIQ+fja3NrueI/B/hC8peHtaomO1Euqp3ck5RwfwprW3EYmha7wbIvClmVXcvesqb+DxbiGBsLzNfUuWlhLj+304HyxRdfzH//+18MwxjwRWpra2loMP8It7a2snPnTlJSUgZ0DnXKPLBY0BvXoN/+F4wYDTPmm58bORbLjXdDUAhqzundj1UKklLRRfkDHrsYXnT2AcgY69L2l9BeIq69s5reuh78AyAyxqzZLEQvtNbog3sw/vaY+UCU628Xn54RTkKoH//eVY7Wms8O1/CHtYXYDciplo1Ww1lVs52ooMELlFPD/WkzNGUNbby0vYzcGnO+5cq8EwO0Ib+epDA/RgxCPn2fvwE33nhjl39XV1fz9ttvExratZ7i008/3edFqqqqWL58OYZhoLVm/vz5zJw5c0ADVWHhMH4K+pO3wDCwXHFjl2BGTZ6J5U+voCw9J3GrpDT09q8GdE0xvOjmJijMR02f7/qTR0RBfR26rRW9bQNMngEtzdI1UvRK5xzEeOVpyM2C4FDUBd9GzTrN5dexWRTfnhjDUxuLefKrYlYeqmFqYjAFNa2Ute8iF8OP1tpcUR7kQBng7X2VvHegmm+Oj+LLvDpyqpsH7ZrC9zS0OthZ0sBF46NdvsgF/QTKN998s0sukp6ezu9///uTPo+aMR+992sYOxGOqWzR+flegmQAklLhy0/QdbVm0C3E8fIOgTZOvAxcXyLMWsp8vRFqKs1g/PB+9OH9aK0H5ZdbeDfjzZehohT1wxtR889CBQQO2rUWjQrn9Z3lrDxUw6zkEO46PYX/91m+BMrDWGObQatDEz2IgXJKe6v19w5Ukx4RwJXT4zhS20p2lawoC+d1lDGcl+rapjgd+vwNmDix/wYfQ0nNPA294XMsl1074MBCJaWhAYryIWzSoIxPeDfdUX4ww/WBsgqPQgPGqvfBakNNnYWurzXzTutrIcz1dUqF99KGATkHUbMWYjnzgkG/np/Vws/mJrK7tJEfTI3Dz6qIC/FjV4mULxyuqprMLmeuLrV1rPAAK2EBVprbDO44LRl/q4WMqAB27GvEbmhpry6csiG/jshAK+Nigwbl/E6/VbTb7Xz++efk5OTQ3Nz1tsjSpUtdPrCeqLBwrHef4Mp0YioAujgfNU4CZdGD7IMQE48Kj3T9uSPbN2Ed2AWTpqOCQyEh2XzzVlIogbLoqrQIGhtgMO5u9GJWSmiXNsXxIX5UNtlxGFo69w1Dle2B8mCmXgD8YGosEYFW0iPN1eX0yADshuZIbWvnY0L0ps1hsKWwgdMzwgbt75TTvwFPPvkkubm5zJw5k4gIL3xRj4kHf3+pfCF6pbMPdDYacbljOqqp9k2oxCWZ1y0tQo2ZMDjXFV5J55idS9WJtk13gbgQPwwNFY12l7eEFZ6vY0V5MFMvAC4c17WSy8goM8Uop6pZAmXRrx3FjTTbDeamur7aRQenfwO+/vprnnzySUJCQgZtMINJWSyQkCKVL0SPdF0NVJTCWd8YnAuER0J7upA6Za75WGw8WCxQKhv6xHGyD0JAoLm3wk3i29vAljW0SaA8DFU1D82K8vFSwv2xWRQ51S2cMaRXFt6g2W5Q3thGUqg/VotiQ0EdgTYLUxODB+2aTv8GxMbG0tbm3Rs7VFIaOmuvu4chPFF2xwre4KwoK6vVTK+ITzbbqgPK5mfe6SiVEnGiK519ANLH9L1BeZDFtQfKpQ1tSLLa8FPV5MDfqgg+waYzJ8pmUaRF+JMjG/pED57dVMxnh2sJsCpGRgWSX9PCzOQQ/K2DN0/7DJR37drV+fHpp5/OsmXLuOCCC4iMjOzyvMmTJw/K4FwuKRU2rkE3N6ECByfpW3gfrTXGyrchKATSxwzadSxX/Ayij2utGZeElkBZHEPb2yD/MOrsb7p1HHEh5suDVL4YnjpKw7mjIk9GZABfF8tGUtFVi91gXV4d0xKDGRERwKHKZmwWxeLRg5sO3Geg3FN95FdffbXLv5VSPPnkk64d1SDprHxRcmRQAyLhZbashb1fo77/k0EtwaWmz+v+WEISesMBKREnjirIAbvdrfnJAP5WC5GBVkolUPYK5Y1trM6uZclE19SSHeyufH3JiApgVXYttc12wt00BuF5Nh+pp9mu+c6kGKYmDl0acJ8zcPny5UM1jqGRmAaALspHSaAsAN3ciPH685A2EnXG4Jfh6iY+CZoapESc6KSzO8oUujdQBjP9QlaUvcPKrBpe3VnOnNRQ0iJOfhNcZZPdJec5ERmR7Rv6qluYmiiBsjB9kVtLVKCVSfGDl4/ck36TOm688UaeffZZNm7c2K0snNdJSDI3T0nlC9FOv/M6VFdg+eGNZh7xEFPxyeYHkn4hOmQfMDd/Rru+XfVAxYX4Udpgd/cwhBMOV5mvz3kuav9c3WwnKsg9OfIZUWaALo1HRIfGNgdbChs4NT18yMtV9hso/+53v2Ps2LGsWbOGm266iYceeoh3332XwkLv26mvbH5mTqhUvhCAPpKH/vRt1GnnoEZnumcQ8UdLxAkB7Y1vRo7ziFSc+BA/yhvb0Fq7eyiiHzntAXKOCwLlVodBfasx5BUvOkQG2ogMtLrkaxG+YWNBPa0OzcL0wSsD15t+fwuioqJYtGgRixYtwuFwsHfvXrZu3cqyZcuw2+1Mnz6dGTNmMGnSJPz8vKCEUFKqrCgLAIzX/woBQaglV7pvELEJoKREnDDpxgYoLkDNOd3dQwHMDX2tDk1Ns4NINwVNon8NrQ5K6s0Umbyakw8uh6qGcl8yogLJqfLyu9jCZb7IqSUu2Mb4Qeq+15cB/RZYrVYmT57M5MmTufLKKyktLWXr1q188MEH5OXl8a1vfWuwxukyKikVvXMz2m5H2eQP/3Cl7XbYvxN17qUoN+YGmyXi4iT1Qphys0Brt2/k69BRIq6ssU0CZQ/WsfIa4m9xSepFVZMDwG2b+cCsfPHu/kbpDCmoa3GwraiBb2VGY3HDnbYT+i0wDAMwayufe+65nH/++S4d1KBKTAOHA8qKICnN3aMR7lJRCobR2drcreKT0SWyoiza0y4AMjxjs3H8MbWUx8ZISU1P1VFzeMGIMD7JqqHFbhBgO/G6su5qNnKsjI5W1nWtjHDTpkLhGTbk1+HQcFp6uFuu7/RvweHDh3n++efJy8ujtbW1y+def/11lw9ssHSWiCvKl0B5OGtfwVUJSW4eCKj4JPRXUiLOV2itYfdWyJw24LtWOvuA2ZQmZOjz8HoSd0x3PuG5squaCQuwMj0phI+zasivaWVMzImXuuxIvXBnoDyyfUNfTlWLBMrD3Be5tSSF+TE62j3zwOnfguXLlzNz5kxuvPFGAgK8eNImpQCgiwqQkGT46tw8F+/+QPloibg6CHPPO2bhQlvXYzzzCOqKn6HOGODdtuwDqPFTBmdcJyDU30qwn0UqX3i47KoWRkYFkN5eVi23uvmkA2WLgvAA93WGTAkPwGaBnKpmTs+Qv4vDVW2Lg50ljXx7YozbFpKcDpTLy8v5/ve/7/UrXiowGKJizRVlMXyVFUFAEIRFunskqPhk8y5HaaEEyl5Oa43x/hvmx1vXwwACZV1aCNWVkDE4bdRPlNRS9mwOQ5NX08IFYyNJDPXD36rIq2nt/8A+VDbZiQi0uTU32M+qSIsI4GClbOgbzg5XNmNomJI4tLWTj+V0EtPs2bP5+uuvB3MsQycpFS2VL4Y1XVoE8Yme8cavo0RcmWzo83q7t0HeIfNnun8HuqHe6UP126+Cnz9qxvxBHODAxYfYJFAeQrtKGnlifSEOw7mSfIV1rbQ6NBlRgVgtirQI/5Muq1bdZCfaTTWUjzUpPph9ZU20OQx3D0W4SW77XM6IdF8mQ58ryn/5y186A4m2tjb+8Ic/kJmZSWRkZJfnLV26dNAGOBhUfDI6Z427hyHcqaQQ0jLcPQpTR4m4EgmUvZ3xwRsQFYvl6lsxfn83eucm1Lyz+j1O52ahv1qNuuA7qOi4IRip8+JC/NhT1uTuYQwLxXWtPLymgPpWg0snxjiVm9vRlKMjp3dERABfFzee1Diqmu1EekDr6MkJwby7v4qDFc1MHOJubMIz5FS3EBVoJcKN87HPKycmJnb5d2qqB1QIcIXoOGisRzc3mqkYYljRDgdUlKBmnuruoQCg/PzMLmxSS9mr6YN74MBu1Peuh9GZEBljpl/0EyhrrTHeeAFCw1Hnf3uIRuu8uGA/GloNGtscBPu5f5XRVzXbDR5ec4Rmu7mS7OwmtuyqZmwWSA03n5seGcCq7FrqWhyEnWCOcWWTg5FRJ57j7CqT44NRmKvsEigPT7nVzaS7cTUZ+gmUL7vssqEax9DqaA1bUQ4pI9w7FjH0KsvMEoGesJGvQ3wSuqzY3aMQJ8H44D9msHvauSiLBTV9HnrtJ+iWZlRAH0HHjs1mTe8f/BQVHDJ0A3ZSR+WL0vo2MqIkUB4MWmuWbygmt7qFe85I4dE1RzpvOfcnp6qFtIgA/Kzm3d+OoCKvuoVJCQMPLh2GpqbZ7tZmIx3CAqxkRAWws6SRyz1nj6sYIg5Dk1fdyjfGR7l1HP3mKN92220899xzfPnll1RUVAzFmAadiok3P6gsc+9AhHt0lIbzoEBZxSdJ0xEvpvMOw87NqMXfQrVXBVIz5kNrq1kqrrfjHA6M/7wACSmohecN1XAHJD60o0ScVL4YLG/vq2JNbi1XTItjbmoYqeEB5FY7t4ktu7qlS/5mR6B8onnKtS0ODO3e0nDHmhwfzL5yyVMejgrrWmkztGevKAMsWbKEvXv38r///Y8jR44QHx/PhAkTOv87Pj3DK7TnAOrKMikRNwx5VGm4DvFJ0FCHbqjzmBq6wnn603cgKBh11oVHHxw7CULD0Ns2oGb0nOajv/wEiguw3HSvx3YKPbY7n3C9FrvBK1+XMTsllG9PigYgPSqAvaX95xlXN9uparJ3SZOIDrKZHfpOsJV1Zw1lD8hRBpiSEMw7+6s4UN7cZYW8pL4Vf6vFYwJ64XqesJEPnAiUFy5cyMKFCwGora1l37597N27l48//pjnnnuOyMhInn766UEfqEtFRoHFYnZnE8NPaSH4B0BEtLtH0knFJ7WXiCuGkRIoexudmwVjJ6GCQzsfU1Yratoc9NYNaHub2a78+OO2rIXkETBt7lAOd0AiA63YLEoqXwySfeVNtDo054+N7Nw8nxEZwJqcWupbHYT6957uknPcRj4ApRTpEQEn3MraE5qNHGtSe57yztLGzkC52W7wi49yyYgK5FeLpHGYr8qpasGiIC3C363jGFCPy/DwcBITE0lISCAuLo6QkBCCgryvramyWM1aypJ6MSyZpeGSPKM0XIe4ZKC9lq7wKtrhgJIjqKTum53V9FPNZjL7dvZ8cFE+Kn20Z83F41iUIi7ERqkEygNSUNPCHidWhXcUN2JVMDH+6Gtpxwpaf3nK2VVmekbGcRvv0iMDyK1uMbtEDtDR9tWekY8eGmBlZFQAu0qOfi/f319FdbODXSWNNLVJSoavyqluISXcHz/ribdjd4V+3zIeOnSIPXv2sGfPHrKyskhISGD8+PGcfvrp/OQnPyE0NLS/U3immDi0BMrDU2kRJHvYKkRcgvl/qaXsfcpLwG6HpB42Bk+cBgFB6G3rUZNndPmUbqw3G4z0dJyHkaYjzimsbWVVdg3r8uooqDWbfiy/aCSpfVSv2FHcwNiYoC4VRdKPad88qY9qDzlVLcQE27p10BsRGUBDm0FFk53Y4O53MvpS6WErymCWifvgQDWtDgO7ofnf3kpigmxUNNnZWdLAnFS5C+eLcqtbGB/r/uor/Ybp9957L6tWrWLevHksX76c3/zmN/zoRz9i1qxZ3hskg1mrtLLc3cMQQ0wbDigvRsV5UH4yoPwDzLscsqHP+xTlAfS8ouznD5Omo3dv635codkdVCV7fqAcH+JHSb0Eyn2xG5pffJzLf3ZXEBVk4+rpcVgVfJRV3esxDa0OsiqbmXpc17GYIBuh/hYnVpRbGNlD/mbH5qfcqv7TL97cU8E1b2axragBMJuNhPhb8HfzKt6xpiQE02ZoDpQ38+6+KupaHPzfackEWBVbCxvcPTwxCBpaHZQ2tJER6f5Aud+3jEuXLmXv3r289dZb/Pvf/yYzM5MJEyaQmZnp3XWVo+OgqhxtOMxUDDE8VFWYq3+etJGvQ3zS0Y2Gwmt0dvlM7PnvoRo1Dr11XbeNmrrIDJQ97u5GD0ZEBLDyUA3VHtKIwhPlVbdQ1+LgtlOTOHNkBAAHK5r57HANV0yLI8DWPfDcVdqIoekWKCulyIgM6LNyRUOrg/zaFuaP6L5gld6+gp1b08LMlJ4XtLTWvL6rgld3lBNks/DrVfncOCeRyiaHx2zk6zCxPU95Q34dn2XXMDsllInxwUxNDGZrUQNaa49OXxID15Fj7+6KF3ASm/k+/fRTKioqGDt2LHfeeWef5ygvL2f58uVUV1ejlGLx4sVceOGFfR4z6KLjwDDMW58e1glLDKISMwfYk0rDdVDxSejtX7l7GGKgCvMhMqbXGsgqbZS5UTPvMEyYdsxxeeDvDx3lKj3YqGjzxepwZTMzkr33TuJgyqo084XHxx7NNT5/bCRr8+pYm1fHolER3Y7ZUdyIv1WRGdt9r096VCCfHqrB0BpLD0Hg3rImDG2mJRwvNMBKfIiN/eU9d1TUWvPK1+X8Z3cFi0ZFcO3MeB77spDlXxX3Oh53CvW3Mio6gHf3V6GBH0w1eyHMSA5l05ESjtS1djZcEScmr7qFrMpmJsYFkRDqN+hvPHKrW6hvdfSaWtTxJjEjyv0/1wG9bezYzFdZWUlFRQWlpaVs29bDLcXjWK1WfvSjHzFq1Ciampq4++67mTp1qltXpFVMnPniVVkmgfIw4pGl4TrEJUFdDbqpERUkXag8jT6wG5oaUNPmdH28KB96SLvoNGKU+by8Q6hjAmVdmA+JaSiL59zi7k1H+bHDVS0SKPciq6KZED8LiaFHc4KnJASTHObPhwerewyUdxY3MjEuqMfNShmRATTbDUrr20gM677rf2dJI34W1SUwP9aM5FA+z66h1WF0S6PoCJLPGxPJDXMSsCjF/Wem8tzmEj48WO0RzUaONyUhhEOVLcxPC2NUtDkfZySZb063FTZIoHySnt1UzK5S841VTLCNqQnBXD0jflDuIG0qqOf3Xx5BAX9fMqbHyi651S2E+FmIDXb/XHR6M9/evXvZv38/LS0tjBkzhszMTBYvXsy4ceP6vUhUVBRRUWZnlaCgIFJSUqisrHRv6kZHLeWKMtQY9w1DDLGyIvDzh8gYd4+km84ScWVFMGK0u4fj8Yx/Pg12O5arbh6a6731TyjKx/LYS52rLVprKC5AnXZOr8ep0HBz1Tj3UNdPFOWjxk8ezCG7TKi/lYRQPw5XOtcEYzjKqmxmdExgl5U4pRTnj43k71tLya5q7lLvuLrJTm5NC6eP7Hmh5tjGIb0FyuNjA3vNJZ6TEsqHB6vZVdLY5c1NdZOd/+2p4KyR4dw4J6FzvFaL4obZCUyKD2aEm8tx9WReaiifHqrmB9NiOx9LDPMnOcyfLYUNfDPTc8p9eps2h+ZARTOnZ4QzIS6InSWNrMquZXR0oMu/r59kVfPUxmISQ/0prGvl8+waLhrf/Ro51S2kRwZ4REpNv4Hyr371K8aPH09mZiYXXXQRY8eOxc9vYLtoj1VaWkp2djZjxnSPTleuXMnKlSsBeOSRR4iNje32HFcxQoIoA0JaGgk57jo2m21Qry3cp7q6AntiCrHxnne7u23cBCqBsKYGAvuYfzI/zZJsZRvXoB0OYm59YEiadZRVlGDU1RDV0oAtNQMAR1kx5S3NhI7JJLiPn0n1mAnY87M7f25GQz1lVeWEjMns9vfHU2UmlHG4osGpuTfc5mir3SC3ej/fm57S7eu+bHYEr3xdzuf5zcwee3RxaNt+s+rSGeOTiY3tXrUhONyBIpeyVmu3c9a12MmuaubqOWm9fp/PjIxm2dpCdpTbOXfq0ees2l6IoeHaBWOIi+l+52pJnGfeYV0YCx9MSOsWOC0YXctbO4sJi4wiwObcfqPhNj/7s6uollaH5tyJyZw11vy+LPn7Jg7VOFz6ffrHxnye+6qYuemR/ObCCdz83518crieq04d2+XnqrUmr+Yg52XGe8TPqd9XlxdffBGLxUJTU1OPNZPLy8ud/kKam5t57LHHuPrqqwkO7v4LunjxYhYvXtzl3IMqOJSG/FyajrtObGzs4F9buIWjIBfikzzy56v9zNWm2kP7qR8/tdfnyfw0G3zoRnO3e/mWDajRmYN7vZYWjAozsKnc8AWWM80VOr17BwAN4VE09vEzMRJT0V+tpiw/DxUUjD60D4DGiJhuf388VWqIYvWhZvKKSrqUMuvJcJujByuasBua5GCjx6/7tPRQPtxbyncnhHV+7748WEyIv4VoSzPl5T1v2ksM82NPYRXl5V1fLzcV1GNoGBXW9+vk1IRgvjhUzlVTIjoDkfd2FTIqKoAw3Uh5ef91nj3dxCgLbzgMPt+d3+vGxeMNt/nZnw1ZFQCkBto7vy+ZMQFsK6imrKzMJau6+TUtPLc+l9PTw7n11AQaa6s4Z1Qof9lQzJq9+V1ylUvr22hodZAQ2PPv02BITk7u9XP9JsdZ2vPnHnnkEdraupYHKikp4cEHH3RqEHa7nccee4yFCxcyd66HdKGKiUMP4+582t6G41e3ojd/6e6hDAltGFBW7JEb+QBUYBBEREmJOCfo/Tt7/HjQHFvf+sCuo9fuqFyR1HflCpXenkqTn931OC8oDdehIy80x4mSY8NNVoWZkjImuudSVuePjaLZbvDStrLOBhk7SxqZHB+M1dJ7EJIeGdDj93tXad/5yR3mpIZS3mgnu/0cBbUtHKxo7qzK4QsmxQfjb1VsLZIycSdqT2kTiaF+XWpnT4wPorrZQVGda8pCHmjfWPrdKTHY2uf8wvRwQvwsfHigustzc6rbG+l4QGk4GEBnvjFjxrBs2TIcDgcAhYWF/OpXv2LJkiX9Hqu15plnniElJYWLLrroxEfratFxw7s7X04WFGSjt65390iGRnUFtLWam+Y8VVwSWpqO9Evv3wUJKZA8wvx4sHV0TExMRR/YfbTjWVE+hIahwvoJPNpzznVee55yYZ6ZKx/reSlAvelok3y4SvKUj5dV2UxYgJX4kJ7TEsfFBLJoVAQfHKzmp28d4p9fl1FS39atLNzxMiIDKKprpcXetfvczpJGxscF9VvreFZKKArYeKQegNXZtVgUnJbuOw06AmwWpiQEs7Ww3t1D8Upaa/aVNXXpDAkwMc6cm3vKXHPX4WBFM4E2C8nhR/PfA2wWzhoVwbr8WqrbO0LC0TfjIyI9I1fe6UD5Rz/6EdHR0TzxxBPk5eXx61//mu9+97ucffbZ/R67f/9+1qxZw65du7jzzju588472bp160kN3BWGe9MRfXCP+f9De908kiHSvlKrEnq/xeJuKj5JVpT7oQ0HHNyDGj/Z3AyXtQdtt/d/4Mlcs6R97px2DtRUdv6MzIoX/ddBVhFREBEN7YGyLsqHxBSvquEeHWQjItDK4UpZUT7eocpmxkQH9nqLWinFrfOT+P156aRHBvDvXeat7qmJPZcU7JARGYgG8mqOfs/rWx1kVzUzpY+OfR0iA22Miw1kU0E9WmtW59QyNSGYmAF26/N0M5JDKKxro6iu1d1D8TqFdW3UtDiYENd1PqVG+BPmb2FPac8lBgcqq7KZMdEB3Uodnj82ErsBnx2qQWvNx1nV/Gd3BSOjAvpN8RoqA9oB89Of/pQnnniCe++9l5/97GeceuqpTh2XmZnJv//97xMa4KCKiYOmBnRjQ681UH2ZPrjb/KCyHF1Zjop2f9L8YNJ7zXxSjywN1yE+CdZ9im5pRgV4xm0nj5OfA00NMG4yymZDr3ofcrNgMPOUy4ogLAI1dTb6Py+gD+wyf1ZFBaiZzv0dZMQodN5h8+PCPNTYSYM33kGglGJkVOCwX1GuaGwjPMCGn9V8wW+xG+RWtzBrYv/5seNjg3ho8Qi+Lm4gv6aFtPC+V8w6asjmVrcwNsZc8dvT3qSkp/rJPZmTEsbLX5exLr+Okvo2vjfF9/7Oz0wO5a+UsvlIvVS/GKC97SvGE+K6rihblGJCfLBLVpTbHJqcqha+MT6q2+fSIgKYHB/Eh1nV7K9oYkN+PdMSg7l1vue8TvcZKP/yl7/s9g7ZbrcTEBDARx99xEcffQSYlTG8Ukf95KpyGGaBsjYckLXHrPGadxgO74Po07o+p6EOgoK9atWrN8aaj9Dv/xtmnurZdbM7gviyYmivrCC66shJVuMnQ/vc1Pt3DuqGPl1SCAnJkJgC4ZGwfydMmwMNdU6tKIOZp6x3bUXXVpl3spw8zpOMigrg7X0NtDl0Z6A4nDS2ObjpnWwWpIdx8zzzdzWnugVDw5gY59/YTksMYVo/q8kACaF+BPtZ+DirhtPSwwm0WdjVXj95XKxz15udGsrLX5fx7KYS/K2KeWm+Vwc7Kcyf1HB/CZT78Xl2DVVNdi6deLQ86p7SJsICrKT28KZtYlwQGwvqqWqyd8lfHqj8mhbaDN1nDv8f1hZS0djGj2fE8a3M6B6b7LhLn1/5okWLhmocbqGi25uOVJRCSrq7hzO0CnKhqRG16CL0P59BH9qPmnU0UNaNDRj3XI869xLURd9z40BPnrFhFfqVp2DKLCzX3eERdRl701lLubRIAuVemKu5yaiOWtgdecoXXjZ4Fy0tQk2YhlIKNW4y+sBuVPuGPOVsoDxiNFob6E1rzX+neM9Gvg6jogKxG+YL36heXvR82aaCeprsBp8equEb46IYFR14dCPfAAJlZ1mU4sY5iTy+rpCHVuXzwFlp7Cp1Lj+5w4gIfxJC/Sipb+P09HCPuZ3tarNSQnl3fyWNbQ6f/RpP1qs7yttz40MY3f77u7esiQlxQT2+Lk6MP5qnvGBE+Alft6NrZW+/I/NHhPGDulhmp4R65N+VPgPlM888c4iG4SYx7U1HKsvw3NBpcHSkXajMaej0Md3ylPWOTdDUiP78A/T53xmSOrWDQW9dh37hCRg/BcsNd6FsHp6bF5cIgC4rGnZz0hnacMCB3ahZCzofU+Mno9d+irbbB2We6pYWcyNoR277uMmw+Uv0js3mv51dGe7Y0LdhVftxXhgoR3d06Gv2yBe0wbY2r46oIBsOQ/P3raU8dHYaWZVNRAZaiRmkbnanZ4SjteZP64v41Wf5HK5sGVD6hFKK2SmhvLu/ijNGnniw4+lmp4SyYm8lXxc1Mn+E72xWdJXC2laK680KFi+0z92aFgeFda2cM6bnzcijogLxtyr2lDadXKBc0UyIf9eulceyWRTf9eCUoD7fkm7evNmpkzj7PI8THgVW27CsfKEP7oaYeFRMnHnLOu8wuu3oRgi9dR1YrVBTBV9vdONIT5zWGuPl5TBiNJab7kP5e36LUxUcCqHhsqGvNx35yeOndD6kxk+B1hYzT3kwlHVte67Gmd309LqVEBgEUU52eYyOhdAwyDkINj+ISxiM0Q6qpDA/Am2WYdmhr7HNwZbCBk5LD+P7U2PZWdLIxiP1ZFX0vZHPFc4YGcHP5yexr7wJjfP5yR0uGh/FkonRTE/y3RTDzLggQvwtbDoi1S96sqW9KsjFmVHsLGlk85EG9paZG/WOz0/u4Gc1SxDuKT25POWsyqZB/x0ZTH0GymvXruWOO+7gzTffZP/+/dTV1WG326mrq+PAgQOsWLGCO+64g3Xr1g3VeF1KWSzmi1zF8Kp8obU2V+XGTgQwA2WHvTPQ0C3NsHurucM/Og5j9QfuHO6Ja6yH+jrUnNPNGsXeIj4JLYFyjzrzk8cd0/q5fVPcoNVTbi8Np+LbV5ST08w3M/V1kJjq9B9/pdTR1uSJqV6Z+29RipFRARwehrWUv8qvx25oThsRznljIkkN9+fvW0opqG0dlLSL450xMoI7FiQzPy2M8U7mJ3dICvPnqunxfdZs9nY2i2JGUgibC+sxOso3ik5bChtIDvPnyunxJIf58+K20s58995yh8EMonOqW2hsc5zQdVsd5mbXvq7h6fq8V3TrrbeSl5fHJ598wpNPPklp6dHmHImJiUyfPp2f//znpKV536aUTjHx6OG2olxyBOpqOgMMRo8HMPOUx0yEXVugtdXMWY6KRa94BV1S6NFl1XpUbs5XFeM9tWqhPU/5wG53D8MjdeYnH7OKq8IjBzVPuaM0XOeKslIwbhJsXe90fnIHNWI0es92VLL3/s0cFRXAp4drMbT2qA03g21tXi2xwWa5NYtS/HhGPA99XgDAmOiheSN+Wno4p6X7bvrEyZqVEsoXuXVkVTQzrp9mLMNJi91gV0kj54+NxGZRXD09jt+tOUJxfSvjYoLw6yPffVJ8MP/eVcG+siZmJA98I2hudQt2Y3By+IdKv0lVI0aM4NprrwWgpaWFhoYGQkJCCAjw/NvYzlDRsUPT2cuDdNRP7ihPpcKjIC4Rfdhsq6u3rDNXzMZOQiWmot95Fb3mI9RlP3bbmE9IeYn5fy9q6gCYDVG+Wo1ua0P5eXhO9RAy6yfvRs1c0O1zg5qn3FEaLujo7W41borZqGeglSs6VpS9qCPf8UZFB/LegWqK6tpI6ae8ma+ob3WwraiBi8Yf3Y0/MzmEUxKD2V7cyGgvDgJ8yYzkUCwKNhfWS6B8jJ0ljbQZmhnJZurNnNRQJscHsau0qde0iw7jY4OwKLM6xokEyke7Vnrvz8PphiObN2/Gz8+P6OhonwmSAbNUWFUl2nFitxU8ndYa4+1Xu65QHtgNYRFmqat2anQmHNqHbmtF79iMmj4PZbWiIqPhlLnodSu75DB7A13RESh7WS5oUhpoDdn73T0Sz1KQC41m/eTjDWaecmdpuGOvN3kG2GyoMRMGdC41dgIEh5il7bzUqCgzKHx+Swnv7KtkT2ljt85xvmZjQT12AxYcs0lMKcUt85O4/dQkogdpI58YmPAAK5mxQWyWPOUuthbW429VnbntSil+PCOBQJtiVkrfwW+Qn4VRUYHsPsE85azKZiICrMSFeO/viNOB8uuvv87111/P888/z8GDBwdzTEMrOg60AdWV7h7J4DiSi37nVYzHf4nevgFo38g3dmLX3MpRmVBThV7zMbQ0oWbM7/yU5YwLoL7OXGn2JuWlEBRibpDzImrqLAgKQa/+yN1D8Si6PQhWo8Z3/+QYM9/emS6Txof/xfjXM0fbUPentAh1XNtzlZCM5c+vdeb5O0tFxmB94lUzxclLpUcGcHpGOIcrm/nbllLu+SSP2z/IcfewBtWXubXEh9gYe9zKcUywH2eM7Kd9uRhSs1JCOVTZQkVjm7uH4hG01mwpbGBqQnCXkoJjYgJ59fJxnSXg+jI7NZQ9ZU0n1Pkwq6KZMTHeu5EPBhAoL1u2jAceeAB/f38ee+wxbr31Vv773/92yVv2Rp35qz6ap6z37zI/SEjGePoRjA/+AxWl3bqCdTRr0O++BkEhkDn16CfHT4H4ZLSXberTFaXgZfnJACogEDX/LPTWtei6GncPx3PkZ5tVJnq4Q6Aiosz9Bof6X4XXq95Dr3rfqfncrTTcsdf0Gx5pB8ezWhR3LEjmxW+P5YUlYzh/bCQFta00tfnmqnJdi4PtRQ0sGBHu1S/2w8Xs9hXSLYUNbh6JZyisa6O4vq3HtAln9xicMzoCi4KPDlYP6NotdoO8mpbOms3eyulAGSAjI4Mf/ehHPP3001x77bVs2LCBm2++mQcffJAvvvgCw/DCP5TtXdo6b9P7GL1/B8TEY7n7URg3Gf2/lwBQ445rn5uSDgGBUF+LmjanS71hZbGgFn0DsvZ2rkp3u44npq5UlHpffnI7dcb5YLejv1zp7qEMOr33a/Sebf0/Lz8bUkea1Wp6oEZnwuF9fa4U64pSsyteUDD69efNc/bluNJwoqvoIBtT2m/nltR7V2qWs74qqMOhkU10XiKtvcHK+weqfD4lyBlb28vCzUw+8dKAMcF+zE0NZeXhGlodzn9PD1c1D7hrpScaUKAMUFxczH/+8x/+9re/0drayne/+13OPvtsPvzwQ/74xz8OxhgHV1yCWS+4qMDdI3E5bRhmGbjMKajAYCy3/NJs4RyX2K3rm7JaYeQ48+OZ87udS51xAaSkY7z6HLq5qcvnjNf+inH3tR4VLGutobzU6ypedFDJI8w3Nms+NH+OPsx47a8Yf/kNuqD3oFUbBhRko9JG9n6iUZlmClVl7+UeOxrtWG64C0LCMJ77fbf53MXxpeFENwntTQRK6n3zVnd2VQuBNgujo31ob44PU0px7cx4sqtaeOqrYudTrHxUR1m4xLCTuwN2/tgo6locrMurc/qYoxv5vDtQdjq7+sMPP+SLL76guLiY+fPns3TpUsaNG9f5+blz53LdddcNyiAHk7L5mWkFR3LdPRTXK8iBhjoYb6ZRKD9/rDfcjTYcPdZwVZOmm9+HidO7f85mw3LFjRiP3o1+57XOChjGqvfQn75jPqmiBDwloKivg5Ym79vIdwx15oXo534Pu7fBlJnuHs6g0PY2s1yhw4Hx7DIs9z3Wc83r8hJoboI+AmU1ejwa0If3odq7bnZzcA8EBUPmVCzX3mbm7r/6HOrHt/Y8vhJZUe5PYqj5Alzso4FySX0rSWF+knbhReamhvHDqbH8c0c5o6IDuXhCtLuH5BbHloU7WVMTg0kK8+PDg9Wc2UtevsPQfJxVzb6yJrKrWsivbSE6yEZMsHdXb3J6RXn79u1cdNFFPPvss1x33XVdgmSAgIAA/u///s/lAxwKKiUdCvPcPQyX0wfamzMct8O+t0YH6txLsTz811472KkxE1ELz0WvfAtdkI3esw392l8hMdV8QtER1w3+ZLWn0igvTb0AUNPnQnik9zZ8cUZxATgcqIXnQskR9L+e7fl57SkSasSo3s+VOhL8/eFw73nK+uAeGD0BZbGiJkxDfeNy9LpPe69b3UNpONFVWICVEH8LxT6aelFc30Z8iHe/0A9Hl02O4dQRYby4rbQz/WC4OVzZTJuhmZJ48n+/LEpx/thI9pY1kVPVvTOnwzDbrD+zqYSdJY3Ehdj49sQY7j49pYezeRenA+W7776b+fPnY+ujRum0adNcMqghlzICyorNjnQ+RO/bCXGJqOheVteOoywWVEDft0jUkishOBTj+T9hPPN7SErD8vNfmdcrdl36im5uPLn61hXtm0xjvHhF2eaHOu1c2LEZXeGjm00LzDs56uxvmkHr+s8w1q/q/rz8w2Cx9Fl/WNlskD4GfWhfz9eqq4Wi/C6VKtSib5qfyz7Q8zElhbKa7ITEUD+fTL3QWlNS30ZiqATK3kYpxS3zkhgREcAf1hZS1WR395CGXEmD+TuZfJJpFx0WjYrEz6L48LhNfQ5D8+cNRazJqeVHp8Tx9yVjeOCsNK44JY7xPlDP2unUiyeffLLnE9hsxMTEMHv2bDIyMlw1riGlkkegAYryIWOsu4fjEtpwmPnJs7o3ZzgZKjQcddk16Bf+BGERWJbeb97mDoswVwddRP/rWfT6VVhu+SVqyqyun2tpgdLCPvNVdXlHoOzcmwRPpU4/D/3Bf8yGL5de4e7huN6RXLDaICEFddH30Ad2of/5NHrc5C7pEzo/G5LS+q00oUZlole+jW5r7f7crK6NdgBUWDhERJtpSj0pLUJN8NIFgCGUEOpPjg+2ta5udtDq0CSEDs8KJ94uyM/Cbacmcev7OazLq+Mb46PcPaQhVdoeKLvqjkh4gJXT0sNYlV3LuWMiiQ/xI9jfwpNfFfN5di0/nBbLdybF9H8iL+P0inJQUBCbNm1Ca010dDRaazZv3ozFYuHIkSPcf//9rF69ejDHOniS0wHQR3wo/SI/G5oazNJuLqbmn4X6zo+x/Pz/oTpygJNSXbairMuK0V+tBqUwXnkK3Xy00Ll2ODCW/wbjoZ+jS4t6P0lFidnYwctqKB9PxcTBxGnoTWt8clOKPpILiSkomw1ltWK5+lZoaUZ/9XnXJ+b3s5GvnRqdCQ475B7qfq2Du8Hm1/3NcEo6+khO9+d3lIaTFeV+JYb6UdrQhsPwrTnakU4iK8reKyMqkNRwfzbkO78JzVeUNbQREWglwDbgug29unBcFK0Og9s+yOGH/znIZa8d4LPDNXx/SiyXT4512XU8idMrykVFRdxzzz1kZmZ2PnbgwAFef/11HnjgAbZv386LL77IGWecMSgDHVTxieYLaKHvbOjrSFsYjA5gSinUeZd2fSwxFb3VNQ1J9If/BYsVy3V3YDz7KHrFP1Hfu9783Jsvwd6vzY83fI761vd7Pkd5qVdv5DuWmrkA/dKTkHcY0ke7eziudSQHNeaYFd64RBg5Dr1lLVx4GdCeMlFV3udGvk6jzWYk+vC+bl3z9ME9MGpct7bgKjUD/dm7aIfDrP7Sob3iRU81lEVXiaH+2A1NZZOdOB/K5+1IJ0mQQNmrzUsL4397KqhtcRAe0PMeHV9UOgj59eNig3jiGyPJrWqhsslORWMbaREBLB7tu413nH6bcfDgQcaO7boSM2rUKLKyzG5Z06ZNo6KiwrWjGyLKYoXkNJ+qfKH37TRvZ0cO0W2QxFSze19d7UmdRleWodd+ijrtHNTMU1FnXmAGMYf3Y2z6Av3Rm6gzL4DxU9AbVvW+ylpe4pXNRnqips8DiwW95Ut3D8WldGO9WcotNb3L42rWAsg7fPSOQXvZOJXWx0a+jmPDoyA2oVvjEd3cBHmHugTlnVLSwd52NDDuOKY9b1mN8LE3J4MgMcx8Mfa1DX0dgXK8BMpebV5aKIaGTQXDa1W5tGFwNqKOiAhgYUY4F0+I5pqZCZwzJtKnq8I4HShnZGTw6quv0tpq/iFsbW3l9ddf78xLLi0tJTTUe29zq+QRUJjv7mG4hHY44OBu1CCkXfRGdVS+KDm59Av90ZuARp2/xDzvpVdCZAzG839Ev/hnGJ2J+u51qPlnQVlxjxUOtNZm90Ev3sh3LBUaDplT0VvW+Vb6RXuqk0o5LlCeaebV6y1rzf/nHzY/kerEijLtLa6PbzxyeD8YRo8tp1V7oK6Pz1M+vA9CwyX1wgmJPlpLubi+jZggW5fWv8L7jIkOJDbYxoaC4VP9wtCa0ga7VGxxAad/+2+66Sb27dvHVVddxfXXX89VV13F3r17uemmmwCor6/3yjrKnZLToarcXOXydnmHzJqzmUMXKJNoloDRJ9G4RddUob/4GDXvrM5GISooGMsPb4DSIggKxnLDXWY1iBmngp8/ekP3CgnU10Jri9d25euJmrnA/B7010nOi3TmBadkdHlcxcSb6RebzUCZ/GyIijU33jmjh8Yj+uAeUBYYndn9+UlpZkWNgq53lPSh/TBqvE+vlLhKbLAfVgVFdb4VKJfUt0rahQ9QSjEvLYztRQ0+22r9eNXNDuyGlrshLuBUjrJhGOzatYtf/vKX1NbWUlVVRVRUFLGxRxO3R4/27tuTKqW98kVhHozIcPNoTs5g5if3KiYO/Pyh+MRrKetPVoDdjrrgO10eV9PmoH58Kyp9TGcqiQoKRp0yF73pS/R3r+vScpv2ihfe2pWvJ2r6fLMaxJa1MGOOu4fjGkfyICgEortvAFEzF6D/84K5sTM/27n85I5je2g8og/uhrSRPdZDVn7+kJDSZUOfbqiD4gLUvDMH+lUNS1aLIi7Ez+faWBfXtzE1QWpo+4J5aaG8u7+KrUX1pCX5zmtDb0rrXVvxYjhzakXZYrHw0ksv4e/vT2xsLGPHju0SJPuE9vqsPlH5Ij8bYuLNfM0hoixWSEg+4coXuq0NvfpD1KwFqB42T1lOPbv7Lfr5Z5mdB3dt6frk9mYjPrWiHBZu5mVvXusz6Rf6SA6kjOhxxVbNPNV8zvpVZu3jAQTKnY1Hdm5G52ebew+y9/eYdtF5vZT0riXiDrfnJ/e0Ai16lBjq51Pd+docBpWN9s7Og8K7TYwLJizAyoZ8H7hr7ARXl4YbzpxOvZg5cyabN28ezLG4V3QcBAT5RIc+XZQPSalDfl2VmHritZQP74PmJtSc050/ZuJ0CIvAWP95l4e1DzQb6YmZflGIvYfSZ95Gaw1Hcru9+emgYhMgYyz607fN3GInNvJ1HmuzwahM9PpVGL++FeP/3QytrahxfdxhSc2AitLOUoT68D4zVcNH6qoPhYRQf58KlEsb7Gik4oWvsFoUc1ND2XyknjaH76dfdKwo+1IVGndxujxcW1sbf/zjHxk3bhwxMTFdVoGWLl06KIMbSspi8YnKF9owoOQIavzUob94YipsWYdua+tWgqs/es92M090ABsQldWKmnM6evUH6IZ6VEj7ZtLyEggJ87m2w2r6PPQ/n6Fl3Wdw7hJ3D+fkVFVAY0O3/ORjqVkL0P950fzHQFaUAcu1t0NuFjjsaIdhln07pfeUFZWSbqZeHcmD0Zlmd7+UdFSg93eVGiqJYX7UtThoaHXgC/cbO9JIJFD2HfNSw1h5qIYt+TWM8d7aA04pbWgjPMBKkJ9sRD1ZTn8H09LSuPTSS5k0aRKJiYkkJCR0/ucrVEq6968oV5RCa6tbVpRJTAFtmJvOBkjv3mZunBpgcKvmnwV2O3rTmqPnKi/1mdJwx1LhkTBuEs3rPvP+9Iv2N6S9rSgD5oZNgMCgAdfEVpHRZm77jFOxzD4NNWO+mR7Um5SjlS+04YDsA6j2mszCOb5W+UJqKPueaUnBBNos/HNLAWUNvjFPezNYpeGGI6dXlC+77LLBHIdnSB4BX36CUV3p7pGcuPbNdCopbcgvrZJSzVW54gJIGeH0cbq+1qxxe9H3Bn7REaPNCglvv4qeuQAVFmG+WXDHG4UhoGaeiuNfz2IpK4J4722EcbTiRR+BclyiWaXCP8C84zOYYuLNgPxIjlkmsrnJrJ4hnNaRy+srtZSL69vwtyqigpx+mRQezt9q4Yppsfxjexk3vF3LBeMi+c6kGCIDfe9nXNrQxoiIAHcPwycM6NVnx44dPP300zzyyCMAHDp0iF27dg3KwNxBtQd39rzDbh7JidNF7bWg3REoJrSXiBtonvK+HaA1atL0AV9SKYXlyqXQ2IB+9bn2GsolPlXx4lidzS+KTry6iEc4kmuWfAvp+/6nZen9WH5y56APR1ks7a2sc838ZGQj30B1rLz6Sp5ySX0r8SF+WKQ8oE/5ZmY0r105kzNHhvPe/ip+9vZhKhp9Y8520FpT1tAmd0NcxOlA+YMPPuCvf/0rSUlJ7N27FwB/f39ee+21fo996qmnuO6667jjjjtOfKRDIdlc3bJ7c63a4gIIizCbVAwxFRBoboocYKCs92w3y4Sd4MYplZqBuui76E1foFd/aKae+Ej76m466lWXeHegrAty+1xN7qBCw4dsLndWvji0XxqNnIAQfythAVafSb0orpdAw1clhgdy87wkHjp7BA1tBrtLm9w9JJeqbnbQ6tCSeuEiTgfK77//Pg888ACXXHIJlvbboCkpKRQWFvZzJJx55pnce++9Jz7KoRIRBcGh3r+i7M60g8SUATUd0VqbgfL4KeaGqxOkzv82jBiFfu2v5r99rOJFBxUSZqaXlPT/e+eptN0Oxfl95ie7RWqGeWdix0ZpNHKCEkP9KK7z/tQLrTUl9W2dedfCN42PDcJmgZyqZncPxaWkNJxrOR0oNzU1daudbLfbsdn6z+2ZOHGiV7S3VkpBygivDZS11lBUgEoc+vzkDioxFUqOOL/ZrLTIbDc98ZSTu67NhuXHtwLt1/WhGsrHsyWnefeKcmkh2O2Q6lmBcmfgXl9ntsEWA+YrtZTrWw0a2wwSpIayT/OzKlLDA8ipbnH3UFyqs9mIvNFzCacz2CdMmMCKFStYsuRoWaoPPviASZMmuWwwK1euZOXKlQA88sgjbmlqUjtuIs0r3yUuImLAJc7czaiupKyhjtAx4wl2U0OYxjHjqfvsXaKtYO2h41q3529aTR0QfdoibCc75thYGr5/PQ1v/pPYzElmKogPqktJx/H1Rq9t+tO8fwc1QNSkafh50NdgBM6grP3jyBlz8fegsXmLkfH1rMuvB4vFa+cnQFlJHQDjkmOIjY1x82iEq9lsts75OT6xgm0FNV49X4/XkGOukGeOSCDE3/c2Kg41p7+D11xzDY8++iiffvopzc3N3HrrrQQHB3PXXXe5bDCLFy9m8eLFnf8uLy932bmdpdPGoFuaKd+yATVmwpBf/2To/ebGyobwaBrd8L0D0KGRAFTu3oGaMK3f5zs2roWYeKpsAShXjPmMC1ELzqGirh7qfLMDU1BSKsZn71FWkO+VdX6NA3tAKaoDQlzzM3elqFiorqQmKt7zxuYFIqx2HIamsKoR/zbv/f3bX1ALQJDR5JbXITG4YmNjO3+uiUFQWt9K9pESwgJOPP3Pk2SXVhPmb6Gpthrfyr4ePMnJvVeRcjpQjoqK4uGHHyYrK4vy8nJiYmIYM2ZMZ76yzxhnrpDrA7u8L1B2Z8WLDu3X1sUF/QbK2uGA/TtQs05zaT6osnnXnYCBsia3p9aUFsEI5zvWeYyifLPFur/nlS5So8ajqyu88g2IJ+jY/FZY00yGF/f7KZFb18NGRqT5dyi3uoXJCV48aY9RWt8mc9eFBhTlKqUYO3Ysc+fOZcyYMQAYhm+1glRhEdhGjOpcnfUqxQVmG+4oN95Ciog2KwYcPtD/c7MPQFPjSecnDzfWjhrZpd65oc/ccOq+PPq+qKtvwXLLg+4ehtfqqKWcX+3d61gl9W1EBFgJ9vONFUbRu4woM0Uvp9p3NvRJsxHXcnpF+fDhwzz//PPk5eXR2tp1V/Prr7/e57F/+tOf2LNnD3V1ddxwww1cfvnlLFq06MRGPAT8Jk3H/um7aLsd5cRmRU+hi/IhMcWtu/WVUqiJp6D3bEMbRp+NIvS2DaAskOmGdttezNaxal9SiLfVZdCGA4qPoCYOvGb2UJCV5JMTG2wjJsjG1oIaFiZ7b85ncX2rrMgNE1GBVsIDrORU+caGPq01pQ1tzEwOcfdQfIbTUeDy5cuZOXMmN954IwEBA7tl+vOf/3yg43Ir/8nTafrgv5CbZXYG8xZFBajxU9w9Cpg0HTauMWvS9pIaoJub0F98jJp5qltqPnszFdh+18AbK1+Ul4K9zWc7Jw53SilmJIewPrcK+6wYbBZveytnKqlvY2yMb24GFl0ppciI9J3KFzUtZg3lOFlRdhmnUy/Ky8v5/ve/T2pqKnFxcV3+8zX+7akA+oD3pF/o5kaoKveIAKQjlULv2dbrc/TaT6GpAXXOxUM0Kh+TkIz2xlrK7TW23dFiXQyNmSmh1Lc62F/mnekXjW0OShvaSAqT0nDDRXpUAHnVLTgMJ8uaejApDed6TgfKs2fP5uuvvx7MsXgMS2Q0JI9A79/p7qE4r72lsScEICoyxmwHvLvnQFkbDvSnb8PoTKlXe4JUQrJXNh3RRXnmBx7whk4MjmmJwdgsis2F3ln14qv8egwNM5M9v/a/cI2MyABaHNonukqWtTcbSZAVZZdxOvWira2NP/zhD2RmZhIZGdnlc0uXLnX1uNxOjZ+MXveZ1+Qpe0TFi2OoSTPQn72DbmnuXs94+0YoK8by7avcMzhfkJACDXXo+lrvSl0pKoCIKFSwBCG+KtjPyrTkcLYUNnCVZ6ai9+nL3Frigm2Mj5XUi+EiI/Lohr7kcO++k1DSHihL6oXrOL2inJqaysUXX8z48eNJSEjo8p8vUuOnQEuzmafsDYrzwWqDuCR3jwQANWm62X2th/QV45O3ICYeTpnnhpH5BpXQXvPRy1aVPbnihXCd+SOjyK1u6Vzd8hb1LQ62FzewID1cWpgPI2kR/lgUPpGnXFrfRqi/hRB/qdjiKk4Hypdddhnjx4+nrKyMQ4cOcdlllzFjxgwmTPCuWsNOG9tRT3m3mwfiHF1UAPFJKKuH/HKMnQj+/t3SL3T2Acjag1r8Tc8ZqzdKSAHwqlbWWmsoLkB5yF0PMXjmpUcDsLWwwc0jGZgNBXXYDTgtPczdQxFDKMBmITnM3ycqX+TXtnbWMxeu4XROwQcffMD777/P2WefzVdffQWAv78/L7zwAr/5zW8GbYDuosIjzTzlAzvhgm+7ezj9KyqAlHR3j6KT8vOHcZPRu7d2eVx/8hYEBaMWnOOmkfmImHiwWr1rRbm6EpoaZUV5GMiIDiI+xMaWwnrOGxvp7uE47YvcOhJD/RgTLWkXw016ZACHKr27lnJNs509pY0smdhz23WtNc3NzRiGMSzvmGitsVgsBAYGDujrdzpQfv/993nggQeIj4/nrbfeAiAlJYXCQi96oR4gNW4yev0qj89T1m1tUFaEmrnA3UPpQk2ajn79eXRFKSomHmPV++hNX6DOW4IK8o0OSO6ibDaISfCuQLk9j14lyoqyr1NKMTM5lFXZNbQ5DPysnt/BtabZzo7iBpZMjBmWQcRwlxEZwNq8OhrbHF7baOarAnMj6oIRPd8RaW5uxs/PD5sHxzODzW6309zcTFCQ8zXznf7r1dTURGxs1wLydrvdp7/havxkaGmCvEPuHkrfCnLAMFAjRrp7JF10NJXQu7dhfPoO+l/PwLQ5qIt/6OaR+QgvKxGn20vDyYry8DAzOZRmu2Z3qXeUiVufX4ehJe1iuEqPMvtD5FW39vNMz7U2z7wjMjKq514XhmH4dMzmDJvNNuCO0k4HyhMmTGDFihVdHvvggw+YNGnSgC7oVcZNBjy/nrLOaW8XnTHOvQM5XlIaRMWi33kN/dpfYfo8LDfchfKT/ClXUAkpUFqI9pY28sX5EBwCEVHuHokYAlMSg/GzKLZ4SZm4L3PrSAn3JyNyYA21hG/o+Ll7ayvr2hYHO4obOHVEWK93ROROiWmg3wenA+VrrrmGjRs3ctNNN9Hc3Mytt97Khg0buOoq3y3xpcIjITHV8zf0ZR+EsAiI9qyWsUops/pFdQXMOBXLT36BskmQ7DIJydDaYub+egFdaFa8kD/Ww0OgzcLkhGC2eMGGvqomO7tLGzktvfcgQ/i2+BA/gmwWr93Qt7Ggrj3twovKhZ6gdevWsWnTpiG7ntNr8FFRUTz88MMcOnSIsrIyYmJiGDNmDBaL5+eenQw1bjJ60xdow4GyeGbeks45CCPHeeQfeHXhZWZwtOgij87z9kYqIRkNZitrD3uT1KOifNTU2e4ehRhC05NC+PvWUsoa2jy6ruu6vI60C98PMkTPlFJkRHlHK+stR+qpbXFw1qiIzsfW5dURH+LH6GjfvyOyfv16QkJCmD17aF5PBhTlKqUYM2YM8+fPZ9y4cT4fJAMwbhI0NZh5wB5INzWaJbcyxrp7KD1ScYlYzr1EguTB0FkizvPzlHVDHdTVSH7yMDM10dy0u7Ok0c0j6dvGI/WkhPszIsL3gwzRu4zIAHKqWjC057ay1lrzzKYS/rS+iE8PVQNm/e+vixtY0EfahafIz8/n9NNP59Zbb2Xx4sVcf/31NDU18fjjj3PhhReyaNEifvGLX5jlRIHnn3+eM888k8WLF3PjjTeSn5/Pyy+/zF//+lfOOeeczipsg0mil36osRPRmPWU1YjR7h5Od7lZoDVqpGcGymIQRUaDfwAc3o8+/VyPveMBHK14ITWUh5X0yADCA6zsKG5g0TGrX56kqc1gV0kjF42X3PnhblR0IB8crKa0vo3EMM/s0Jdb3UJpQxvhAVaWf1VMXIgf5Y127Aac2ku1i54Yr/0VnZ/t0rGptJFYvnd9v887dOgQjz32GLNnz+b222/nH//4B1dffTW33XYbADfffDOffPIJ5557LsuXL2f9+vUEBARQU1NDREQEP/rRjwgJCeGGG25w6fh7MwyWhE+Oio6D2AT0Qc/MU9Y5B80P0iVQHm6UxQITT0Gv/wzjvhswVr5l3mHwQFLxYniyKMWUhGB2lDR2rhB5mq+LG7AbmlkpIe4einCzjg192R6cfrHxiLk59uFzR5AS7s8ja47w7v4q4oJtjI3xjvrfycnJnWkTS5YsYePGjaxbt46LLrqIs88+m3Xr1nHggFmkYMKECSxdupT//ve/bqvYISvKTlDjJqN3bEJr7XG3NXT2QYhLRIVJbt1wZLnhbti+AWPl22bN6vf+jeXBP6Miey447zaF+eDvbzZKEcPKlIRg1ubVUVjXRkq4563SbTpST4ifhQlxUtt9uEuPDMCiILuqmflpnlkmcGNBPeNiAkkND+CBM9P4xUc5HKps5uLMqAHFJ86s/A6W48eplOLee+/l/fffJyUlhccee4yWFvPNyksvvcSGDRv4+OOP+dOf/sSqVauGfLyyouyMcZOgvrbz9rFHyTnosfnJYvApqxU1cwHWux7FcvtDUF+H3vylu4fVjS7Oh4QUcxVcDCvTEs2V2h3Fnlf9wtCaLUfqOSUpBJvFsxZBxNALsFlI8uBW1hWNbRysaGZOaigA8aF+3HdmKuNjgzh3TKR7BzcAR44cYfPmzQC89dZbnavL0dHRNDQ08N577wFm3efCwkIWLFjA/fffT21tLQ0NDYSEhFBfP3RlJ+VVywlqrFkr2tPKxOnaKqgsAwmUBaAmTIPUDPSWde4eShfaMODwAc/M8ReDLinMj5hgm0du6Dtc2UJVs4NZKaHuHorwECOjAsj20EB58xHzzeac1KOr3WNjgvj9eemketFG1LFjx/LGG2+wePFiqqurueqqq/jBD37A4sWLueaaa5g2bRoADoeDm2++mbPPPpvzzjuP66+/noiICM455xw+/PBD2cznUeISzY1TB3bBmRe4ezRHZWcByIqy6KRmnIp+51V0dYXnpF8cyYXG+s4GPmJ4UUoxNSGYzYUNGFpj8aD0tc1H6lHAzGTJTxamkZGBfJlbR32rg1B/z9ogvbHA7Lw3IsLzUpgGwmKx8Oijj3Z57K677uKuu+7q9tzjG90BjB49mpUrVw7W8LqRFWUnKKXMPOWDuz1qQ4rOOQjKAumyUidMauapoDV62wZ3D6VTR2dLNV4C5eFqamIIdS0Ocl2wScrQmqa2gXejNLSmttne5bHNhfWMiw0iIlDWjIQpo739c66HrSo32w2+Lm5kdmqox+2V8nUSKDtr7CSzA1pZsbtH0knnHIDkNFSAd+x0FYNPJY8wu0l6UPqFPrALYuJRspFv2Oqop7yj+OTSLyqb7Nz7SR7Xr8iirKFtQMf+Y1sZP37zEF/m1gJmN76DFc1S7UJ0MTKqo/KFZ7Wy3lbUQJuhmePlaUJpaWl89tln7h7GgEig7CQ1riNPeZebR2LSWpsb+UaOc/dQhIdRM0+FA7vRdTUnfS5tGOgDu9H2gQUlxx7Pgd0oSbsY1mKD/UgO8z+pDX37ypq4/YMcDlc202Zo/rKhyOnGEFVNdt4/UIVFwR++LOTd/ZVsKTQ3A8328sBDuFZ0kI3wAKvH5SlvLKgnxN/CxHipzjLUJFB2VlIahIaDp2zoKy+B+jrZyCe6UTMXgDZckn6h167EWHYPxn0/xfj0XXTrAF88ivLNijGSdjHsTU0MZldpE3aje3Db5tD8bXMJe0t7XnH+6GA1963MJcCq+P156VwzI4Gvixv58GC1U9desbcSu6FZdl46c1JD+evmUl7aXkZMsK2zdq4QcLSVtScFyg5Ds/lIPTOTQ6U6ixtIoOwkpRSMm4Te/hV6+9Dnf2qtMVZ/aDaV2LIWvXGNOS7pyCeOl5oBcYknnX6htUZ//r65mTU6Hv3acxh3X4fxwX/Rjc6tDHbmJ8uK8rA3NTGYZrtBVkX3W9rv7Kvknf1VPLS6gILargHKe/ureGpjMVMTQvjD+RlkRAVy7pgIpieF8OLWUorqWvu8bk2znQ8OVHF6ejgZUYHctTCF88ZEUtPsYFay5HuK7kZGBpBX3YKjhzd17rC7tJHaFofXp114KwmUB8Cy5CqIicdY/juMF55wOlhwiZws9CtPoV9/HuOZR9ErXjHbFyenD90YhFdQSpmryvt3oBvqTvxEOVmQdxh1ziVY73oEy52/g7SR6P/9A+PuazH+8yK6urLvc+zfBdGxEJtw4uMQPmFKfDA2C7yxq7xLykRZQxuv7SxnSkIwNovioVUFnZvuPs+u4bnNJcxJDeW+M1MJCzCrECiluHleIjar4on1RX0GNG/traTVoblsslkFxmpR3DgngXtPT+GKabGD+BULb5URFUiboTnSz5uwofLhwWpC/S2d9ZPF0JJAeQBUQjKW+/6AuvBy9PpVGL+6GeN/L6G3rEOXl5xQRQzjs3dx/P5udHPfm1z0V5+DzQ/L757D8uATWG75JZb/+x3KTS0dhWdTM04Fh+Ok0i/0mg8hIBA170zznOMmY73t11jufxw1eSb64xUY9/6k17x9rTX6wC7UuMmyaicID7RxzYwENhc28OqO8s7Hn99SggZumZfEfWekUtFo5+E1R1iXV8sT64uYkhDMnacld7vlHBPsx09mJbC3rIlffprH+vy6bgFzXYuD9w5UsyA9rEudWaUUc9PCCJdqF6IHozo29FW6f0NfVZOdDfl1LBoVQYDN+0O2559/njPOOIOlS5f2+PmamhpefPHFoR1UP+SvxAApmx/q0ivQ02ZjvP439Mdvoh0O85NpI7Hc9pDT7aR1Wyv6ndegvhb9ytNw7e09BhTa4TBTLabORsUlmg+mjnTVlyR8UcYYiE9Cv7Qcx6YvUHNOR02fhwp2bkVCN9ajN65BzT0DFdR184hKH436yZ3oS67A+MuvMZ551Ayeo49bnSs+AnU1Uj9ZdLpwXCSHKpv5964KRkUF4m9VrM+v50fT4ogP9SM+1I9b5yfxh7WF7ClrYmxMIPeekYK/tecA4YyMcGqaHby1r5JH1hwhNtjGGRnhjIgMICnMn/V5dTTbDS6b5CE1xYVXSAkPwGaBnOoWznDheYvrWlmxt5KLMqNIDXcuN37loWocGs4bG+nCkbjPP/7xD1555RVGjBjR4+dra2t56aWXuPrqqwd0XofDgdU6OHWvvf/tiZuoUeOx3rMMy19ex3LvY6jvXgtFBRh/+TW6xbl3oXrzWnOj05RZ6K9Wo7/8pOcn7t0OdTVY2lf2hOiPUgrL7Q+hLvgOlBWjX/wzxv9djfHPZ9DlJf0erzd8Dq0tqDPO7/0a8UlYfnYvtLZiPPMIuq1rZQzJTxbHU0pxw5wExsYE8qf1RTy9sZiUcH8unhDd+ZyFGeFcMyOeqQnB/PLMVIL9en/xU0px8YRo/nrxaO45PYWUcH/+t6eSx9cV8YuPcnlzbyXz00LJiJISmsJ5flZFWoRrN/TtK2vizo9y+eBgNXd+mMvmI/23YHYYmo8OVjM1IdjpwNqT3XXXXeTl5fHjH/+YzMxMnnnmmc7PLVq0iPz8fH73u9+Rm5vLOeecw0MPPcS6deu48sorO59333338frrrwMwd+5cHn/8cS655BLeffddVq9ezTe/+U3OO+88fvKTn9DQ4Jr02CFbUd6+fTsvvPAChmFw9tlnc8kllwzVpQeV8vOHkWNRI8eiYxIwnn4E49nfY/nZvf2mRejP34eEFCw33YfxxP9Dv/YcetR4VErXvGP91WoIDoHJMwfzSxE+RsXEm3c/Lvkh5BxEf/Gx+d+aD1FzzkB987uo+ORux2mt0as/hIyxqPQxfV8jKQ3LNT/HePph9KvPoq485nba/p1mR8v4JFd/acKL+Vst3HN6Crd/kENZo51fn52Gn7XrnbSLJ0R3CZ77Y7Uo5qWFMS8tjDaHQUl9G0V1bZQ2tDEvTfI6xcCNjApgW6FrAq21ubU8vq6I2BAb/3daMi9uLeU3nxfww2mxfGdSTK+paVsLGyhrtPPjma6vQf+3zSVkV7k2tWRkVCDXzep9P8qjjz7K559/zhtvvMELL7zQ43Puvfde9u/fzyefmAuH69b1vSk9ICCAFStWUFlZyXXXXcfrr79OcHAwy5cv57nnnuO222478S+o3ZCsKBuGwfPPP8+9997L448/ztq1aykoKBiKSw8pNX0e6oobYOdm9Et/QTfUo+32Hp+rcw/B4f2oMy9AWa1YrrsdAoMxnv19lxVp3dyE3roeNes0lJ/fEH0lwpcopVAjx2G5cimW3z2HWvRN9NZ1GA/dhv56U/cDsvZCYV6fq8ldzj9jPuqC76C/+Bjjjb+j8w531l+W/GTRk5hgP3599ghuOzWJaYmubfjhZ7WQGhHA7NRQvjE+iphg+bspBi4jMpCqZgeHTzJP+b39Vfz+y0LGxATy+3PTmZYYwiPnprMwPZxXvi7n2U293+H74GAVUUE25qaGndQYfNm3vvUtALZs2cKBAwe4+OKLOeecc3jjjTdcFmcOyYpyVlYWiYmJJCSY7zROPfVUNm3aRGpq6lBcfkhZTj8fo7oK/c6r6PWrzAdtfpA+GsuN96AiogDQq94D/wDUqYsAUOFRWK67A+PxX2I8/TCWm+5D+fmjt39l3gKfe6abviLhS1R0LOq716LP+ZZZvWX5b1AX/xB14WWgNWTtwXjzFQgKQc1e6Px5L/mhmeLx8Qr0xysgLELyk0Wf0iMDSJcaxsJDTUs0q7Dc9kEOo6MDWZgexqJREQNqd15Y28rft5YyKzmEu04/mmsfYLNw+4IkwgKtvLe/ikWjIhgXG9Tl2JL6VrYWNnDZ5JhBqZ3c18rvULBarRjG0Vb0LS09p7nYbLYuhRKOf15wsLmHRmvN6aefzlNPPeXysQ7JinJlZSUxMUc3U8TExFBZ2U9ZKS+mvvk9LDfdi/rutWYQsugbUJCD8ft70JVl6IY6c6PUvDO7bK5SE6ahfnQT7N6G8dTvzM1+X62G6DgYM8GNX5HwNSo6DssvHkHNXohe8QrGH+7FuOtajGX3Ql6WOW8H0BpdWaxYfvoLLMteQF19KypzKqSORE2dPYhfhRBCDI6MqECe+dYofjwjDgW8uK2MX3yUS0Orw6njtdb8bUsJfhbFTfOSum1IVUpxxbRYIgKtvLC1tFvVrA8OVKMUnDsm0kVfkWdJS0tj586dAOzcuZO8vDwAQkJCqK8/mr+dkpLCgQMHaGlpoba2li+//LLH882cOZNNmzaRnZ0NQFNTE4cOHXLJWIdkRbmnsmk93Y5duXIlK1euBOCRRx4hNtY9NS5tNtvJX3vxRV3+2XrWBVQ/dDv84T4C5pxGU1srUZf+EL/jr3PpD2gMCaHu6UexPfMIrXu2E3zpDwmLd32OkvBOLpmf7fTdD9P45is0vv0afuMnE3jaYvxnLcASdIJtUmNjYcx4uPi7Lhmf8E6unKNCuJqz8zM2FiakJ3HdQtiSX81tb+7iuW2V/ObCzH5Tyr44XMGWwgZuXjiScWmJvT7vJ6caLPvsELtrFGeOMce0LruSt/ZVcva4OCaku26PR0lJCTY3l5RVSmG1WvnWt77Ff//7X84991xOOeUURo8ejdVqJT4+njlz5rBo0SLOPvtsHnzwwc50ipEjRzJlyhSsVis2m63zXDabjYSEBP785z+zdOnSzlXnu+++m/Hjx3cbQ0BAwID+Pil9IsV/B+jAgQO88cYb3HfffQC8+eabAFx66aV9HldYWDjYQ+tRbGws5eXl/T9xgHRuFsbjD0JDHYyZiPWuR3p9rrHmQ/TL5i0Ey/97EpXScykVMfwM1vwUwlVkjgpPdqLz8809Fby4rYzrZsbzzUxzs6mhzfbSGpidEopFKVrsBkvfzSbQpnj8wpF9pk44DM2t72djNzR/+cYo8mpauPeTXFLC/fnt4nSC/Fx347+xsbEzVWE46+n7kJzcfWN7hyF5azF69GiKioooLS0lOjqadevWccsttwzFpT2KSh+D5U6zq5/lm9/r87mW08/H8AuAIzkSJAshhBBudsmEaHaXNvHitlLGxQbR1Gbw0vYyDrVv+EuL8OfyybHk17RQ2tDGbxan9ZtfbLUofjw9nl9/XsArX5exOqeWUH8r95+Z5tIgWZy4IVlRBti6dSv/+Mc/MAyDs846iyVLlvR7jK+tKAvhCjI/haeTOSo82cnMz/oWB7d9kEN1s51WhyY+xMb3p8Zhsyje2FVOXo3Z9nphehj/d1qKU+fUWvP/Pstne3EjwX4WHjk3fVA2usqKsskjV5QBZsyYwYwZM4bqckIIIYQQLhUaYOUXC5N5ZmMJZ4wM54Kxkfi1b9Q7LT2MDfl1fJVfz1UznN9XpJTimpkJPL6ukB/PiJdqMB5myFaUT4SsKAvRncxP4elkjgpPNlznZ0NDAyEhrq1b7o16+j70taIsCTBCCCGEED7OYrFg76UJ2nBht9uxWAYW+rq3TogQQgghhBh0gYGBNDc309LSMiw7pmqtsVgsBAY63yMAJFAWQgghhPB5SimCgoL6f6LoQlIvhBBCCCGE6IEEykIIIYQQQvRAAmUhhBBCCCF64NHl4YQQQgghhHAXj11Rvvvuu4fltX3Rs88+6+4h+BSZn64nc9S1ZI66lsxP15L56Vq+MD/7mhMeGygL3zFz5kx3D0GIPskcFZ5M5qfwZL4+PyVQFoNu1qxZ7h6CEH2SOSo8mcxP4cl8fX56bKC8ePHiYXltIfoj81N4OpmjwpPJ/BTH62tOyGY+IYQQQggheiCd+cSAPPXUU2zdupWIiAgee+wxAF5++WW2bNmCzWYjISGBn/3sZ4SEhHQ7dvv27bzwwgsYhsHZZ5/NJZdcAkB9fT2PP/44ZWVlxMXFcdtttxEaGjqUX5bwETI/haeTOSo8mczP7nx+RbmnH5yzPzRf/aGfjD179hAYGMjy5cs7f4m+/vprJk+ejNVq5ZVXXgHgiiuu6HKcYRjceuut3H///cTExHDPPfdw6623kpqayiuvvEJoaCiXXHIJK1asoL6+vtvxvkzmqOvI/HQ9mZ+uJXPUtWR+upbMz+48NkfZFQzD4Pnnn+fee+/l8ccfZ+3atRQUFLBixQqmTJnCn//8Z6ZMmcKKFSucPhZw6nhfNXHixG5/MKZNm4bVagVg3LhxVFZWdjsuKyuLxMREEhISsNlsnHrqqWzatAmATZs2ccYZZwBwxhlndD4+HMgcdS2Zn64l89P1ZI66jsxP15P52Z1PB8q9/eCc+aH58g99MH322WeccsopAFRWVvLwww93fhwTE9P5vJiYmM5ftpqaGqKiogCIioqitrZ2aAftRjJHh5bMz4GR+Tn0ZI46T+bn0BuO89OnA+XefnC9/dCGyw99sPzvf//DarWycOFCAKKjo7nnnnsA6CnDRyk1pOPzRDJHh47Mz4GT+Tm0ZI4OjMzPoTVc56dPB8oD/cENlx/6YPj888/ZsmULt9xyS4/fp5iYGCoqKjr/XVFR0fmHKCIigqqqKgCqqqoIDw8fmkF7AJmjQ0Pm54mR+Tl0ZI4OnMzPoTOc56dPB8q9/eCc+aH58g/d1bZv385bb73FXXfdRUBAQI/PGT16NEVFRZSWlmK321m3bl1nkfJZs2axevVqAFavXs3s2bOHbOzuJnN08Mn8PHEyP4eGzNETI/NzaAz3+enTgXJvPzhnfmi+/EM/GX/605+4//77KSws5IYbbuCzzz7j+eefp7m5mYceeog777yT5557Duh6m8tqtXLNNdfw29/+lttuu4358+eTlpYGwCWXXMKOHTu45ZZb2LFjR+fO4+FA5qhryfx0LZmfridz1HVkfrqezM/ufL483NatW/nHP/6BYRicddZZLFmyhLq6Oh5//HHKy8uJjY3l9ttvJzQ0lMrKSp599tnOWzM9HQv0erwQJ0LmqPBkMj+FJ5P5KQabzwfKQgghhBBCnAifTr0QQgghhBDiREmgLIQQQgghRA8kUBZCCCGEEKIHNncPYDD01L/98ccfp7CwEIDGxkaCg4NZtmxZt2OXL1/Ojh07ePLJJ/Hz86O2tpZ77rmH5cuXD/WXIXxUT/MzJyeHv/71r7S2tmK1WrnuuusYM2ZMt2NlforB1tf8bG5uJi4ujltuuYXg4OBux8r8FIPtqaeeYuvWrURERPDYY48BUF9fz+OPP05ZWRlxcXHcdtttPW6+k/kpToTPrSj31r/9tttuY9myZSxbtoy5c+cyd+7cXs9hsVhYtWrVEI5aDBe9zc9XXnmF73znOyxbtozLL7+cV155pddzyPwUg6W3+fnss8/ywx/+kMcee4w5c+bw9ttv93oOmZ9iMJ155pnce++9XR5bsWIFU6ZM4c9//jNTpkxhxYoVvR4v81MMlM8Fyn31bwezG8/69etZsGBBr+f4xje+wXvvvYfD4ejyuNaal19+mTvuuIM77riDdevWAfD444+zdevWzuctX76cDRs2uPgrE76gt/mplKKpqQkw73h0FL7vicxPMVh6m5+FhYVMmDABgKlTp/LVV1/1eg6Zn2IwTZw4sdtq8aZNmzjjjDMAOOOMM7q85h9P5qcYKJ8LlPvq3w6wd+9eIiIiSEpK6vUcsbGxjB8/njVr1nR5/KuvviInJ4dly5bxwAMP8PLLL1NVVcWCBQs6f6nsdju7du1ixowZLv7KhC/obX5eddVVvPzyy9x44428/PLL/OAHP+j1HDI/xWDpbX6mpaWxefNmADZs2NClo9nxZH6KoVZTU9O5uBAVFUVtbW2vz5X5KQbK5wLl/vq3r127ts/V5A5Llizh7bff7nK+ffv2sWDBAiwWC5GRkUycOJFDhw5xyimnsHv3btra2ti2bRsTJkzA39/fNV+Q8Cm9zc+PP/6Yq666iqeffpqrrrqKZ555ps/zyPwUg6G3+XnjjTfy0Ucfcdddd9HU1ITN1vf2FpmfwpPJ/BQD4XOb+frq3+5wONi4cSOPPPJI5+efeuopsrOziY6O7uzWA5CYmEhGRgbr16/v95r+/v5MnDiRr7/+mnXr1jkViIvhqbf5uWLFCn784x8DMH/+fJ599llA5qcYWr3Nz5SUFO6//34ACgsLO29Fy/wUniAiIoKqqiqioqKoqqoiPDwckPkpXMPnVpT76t++c+dOkpOTu9xa/NnPfsayZcu6/BJ1WLJkCe+8807nvydMmMD69esxDIPa2lr27t3bWZlgwYIFrFq1in379nHKKacM7hcpvFZv8zM6Opo9e/YAsGvXLhITEwGZn2Jo9TY/a2pqAHOz3//+9z/OOeccQOan8AyzZs1i9erVAKxevZrZs2cDMj+Fa/jcirLVauWaa67ht7/9bWf/9rS0NMD5tIsOaWlpjBw5kuzsbADmzJnDgQMHuPPOOwG44ooriIyMBMwNLk8++SSzZs3q97akGL56m58//elPO0ty+fn58dOf/rTfc8n8FK7W2/x8//33+eijjwBznp111ln9nkvmpxgMf/rTn9izZw91dXXccMMNXH755Z0lYD/77DNiY2O5/fbb+z2PzE/hLKV7SkoTQgghhBBimPO51AshhBBCCCFcQQJlIYQQQgghejAskm3Ky8tZvnw51dXVKKVYvHgxF154Ya9tL+vq6vjjH/9IVlYWZ555Jtdee23nuX77299SXV2Nw+EgMzOT6667DotF3m8IIYQQQviaYZGjXFVVRVVVFaNGjaKpqYm7776bO++8k88//5zQ0FAuueQSVqxYQX19PVdccQXNzc3k5OSQl5dHfn5+l0C5sbGR4OBgtNY89thjzJ8/X8rFCCGEEEL4oGGxFBoVFcWoUaMACAoKIiUlhcrKyl7bXgYGBpKZmdljUfHg4GDArMlst9u7NDMRQgghhBC+Y1ikXhyrtLSU7OxsxowZM6C2l8f67W9/S1ZWFqeccgrz5s0bzOEKIYQQQgg3GRYryh2am5t57LHHuPrqqztXhk/Efffdx7PPPktbWxu7du1y4QiFEEIIIYSnGDaBst1u57HHHmPhwoXMnTsXONr2EujS9tIZ/v7+zJo1qzNdQwghhBBC+JZhEShrrXnmmWdISUnhoosu6ny8t7aXvWlubu4MrB0OB9u2bSMlJWXwBi6EEEIIIdxmWFS92LdvH7/85S8ZMWJE5+a773//+4wdO5bHH3+c8vLyzraXoaGhANx00000NjZit9sJCQnh/vvvJzQ0lEcffZS2tjYMw2Dy5MlcddVVWK1Wd355QgghhBBiEAyLQFkIIYQQQoiBGhapF0IIIYQQQgyUBMpCCCGEEEL0QAJlIYQQQggheiCBshBCCCGEED2QQFkIIYQQQogeSKAshBBCCCFED2zuHoAQQojubrrpJqqrq7FarVgsFlJTUzn99NNZvHgxFkvfaxylpaUsXbqUV199Veq8CyHESZBAWQghPNRdd93F1KlTaWxsZM+ePbzwwgtkZWXxs5/9zN1DE0KIYUECZSGE8HDBwcHMmjWLyMhI7rvvPi666CLKy8t57bXXKCkpITg4mLPOOovLL78cgAcffBCAq6++GoAHHniAcePG8dlnn/HOO+9QXV3NmDFj+MlPfkJcXJy7viwhhPB4kqMshBBeYsyYMURHR7Nv3z4CAgJYunQpL7zwAnfffTeffPIJGzduBOBXv/oVAC+++CIvv/wy48aNY+PGjbz55pvccccd/O1vfyMzM5MnnnjCnV+OEEJ4PAmUhRDCi0RHR1NfX8+kSZMYMWIEFouF9PR0FixYwJ49e3o9buXKlVx66aWkpqZitVq59NJLycnJoaysbAhHL4QQ3kVSL4QQwotUVlYSGhrKwYMH+de//kVeXh52ux273c68efN6Pa6srIwXXniBl156qfMxrTWVlZWSfiGEEL2QQFkIIbxEVlYWlZWVZGZmsmzZMs477zzuuece/P39efHFF6mtrQVAKdXt2NjYWJYsWcLChQuHethCCOG1JPVCCCE8XGNjI1u2bOGJJ55g4cKFjBgxgqamJkJDQ/H39ycrK4svv/yy8/nh4eEopSgpKel87JxzzmHFihXk5+d3nnP9+vVD/rUIIYQ3UVpr7e5BCCGE6OrYOspKKVJTU1m4cCHnnnsuFouFDRs28NJLL1FfX8/EiROJi4ujoaGBW265BYDXX3+djz/+GIfDwb333su4ceNYs2YNb731FuXl5QQHBzNlyhQpNSeEEH2QQFkIIYQQQogeSOqFEEIIIYQQPZBAWQghhBBCiB5IoCyEEEIIIUQPJFAWQgghhBCiBxIoCyGEEEII0QMJlIUQQgghhOiBBMpCCCGEEEL0QAJlIYQQQggheiCBshBCCCGEED34/3emSm8LfupEAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# We can get rows\n", - "x_past, y_past, x_future, y_future = ds_train.get_rows(10)\n", - "\n", - "# Plot one instance, this is what the model sees\n", - "y_past['energy(kWh/hh)'].plot(label='past')\n", - "y_future['energy(kWh/hh)'].plot(ax=plt.gca(), label='future')\n", - "plt.legend()\n", - "plt.ylabel('energy(kWh/hh)')\n", - "\n", - "# Notice we've added on two new columns tsp (time since present) and is_past\n", - "x_past.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.247816Z", - "start_time": "2020-10-24T01:46:56.162158Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
monthdayweekhourminutedayofweekvisibilitywindBearingtemperaturedewPointpressureapparentTemperaturewindSpeedhumidityholidayblocktsp_daysis_past
Date
2013-11-10 17:00:001.085349-0.6453931.0307770.794583-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.8958330.0
2013-11-10 17:30:001.085349-0.6453931.0307770.7945831.0000381.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9166670.0
2013-11-10 18:00:001.085349-0.6453931.0307770.939042-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9375000.0
2013-11-10 18:30:001.085349-0.6453931.0307770.9390421.0000381.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9583330.0
2013-11-10 19:00:001.085349-0.6453931.0307771.083500-0.9999621.499889-0.3282570.361570.779561.225586-1.2362520.8352962.1806850.609441-0.1500440.01.9791670.0
\n", - "
" - ], - "text/plain": [ - " month day week hour minute \\\n", - "Date \n", - "2013-11-10 17:00:00 1.085349 -0.645393 1.030777 0.794583 -0.999962 \n", - "2013-11-10 17:30:00 1.085349 -0.645393 1.030777 0.794583 1.000038 \n", - "2013-11-10 18:00:00 1.085349 -0.645393 1.030777 0.939042 -0.999962 \n", - "2013-11-10 18:30:00 1.085349 -0.645393 1.030777 0.939042 1.000038 \n", - "2013-11-10 19:00:00 1.085349 -0.645393 1.030777 1.083500 -0.999962 \n", - "\n", - " dayofweek visibility windBearing temperature \\\n", - "Date \n", - "2013-11-10 17:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 17:30:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 18:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 18:30:00 1.499889 -0.328257 0.36157 0.77956 \n", - "2013-11-10 19:00:00 1.499889 -0.328257 0.36157 0.77956 \n", - "\n", - " dewPoint pressure apparentTemperature windSpeed \\\n", - "Date \n", - "2013-11-10 17:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 17:30:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 18:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 18:30:00 1.225586 -1.236252 0.835296 2.180685 \n", - "2013-11-10 19:00:00 1.225586 -1.236252 0.835296 2.180685 \n", - "\n", - " humidity holiday block tsp_days is_past \n", - "Date \n", - "2013-11-10 17:00:00 0.609441 -0.150044 0.0 1.895833 0.0 \n", - "2013-11-10 17:30:00 0.609441 -0.150044 0.0 1.916667 0.0 \n", - "2013-11-10 18:00:00 0.609441 -0.150044 0.0 1.937500 0.0 \n", - "2013-11-10 18:30:00 0.609441 -0.150044 0.0 1.958333 0.0 \n", - "2013-11-10 19:00:00 0.609441 -0.150044 0.0 1.979167 0.0 " - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Notice we've hidden some future columns to prevent cheating\n", - "x_future.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-22T23:14:39.268167Z", - "start_time": "2020-10-22T23:14:39.187488Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Plot helpers" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.315316Z", - "start_time": "2020-10-24T01:46:56.253738Z" - }, - "lines_to_end_of_cell_marker": 2, - "lines_to_next_cell": 0 - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "def plot_prediction(ds_preds, i):\n", - " \"\"\"Plot a prediction into the future, at a single point in time.\"\"\"\n", - " d = ds_preds.isel(t_source=i)\n", - "\n", - " # Get arrays\n", - " xf = d.t_target\n", - " yp = d.y_pred\n", - " s = d.y_pred_std\n", - " yt = d.y_true\n", - " now = d.t_source.squeeze()\n", - " \n", - " \n", - " plt.figure(figsize=(12, 4))\n", - " \n", - " plt.scatter(xf, yt, label='true', c='k', s=6)\n", - " ylim = plt.ylim()\n", - "\n", - " # plot prediction\n", - " plt.fill_between(xf, yp-2*s, yp+2*s, alpha=0.25,\n", - " facecolor=\"b\",\n", - " interpolate=True,\n", - " label=\"2 std\",)\n", - " plt.plot(xf, yp, label='pred', c='b')\n", - "\n", - " # plot true\n", - " plt.scatter(\n", - " d.t_past,\n", - " d.y_past,\n", - " c='k',\n", - " s=6\n", - " )\n", - " \n", - " # plot a red line for now\n", - " plt.vlines(x=now, ymin=0, ymax=1, label='now', color='r')\n", - " plt.ylim(*ylim)\n", - "\n", - " now=pd.Timestamp(now.values)\n", - " plt.title(f'Prediction NLL={d.nll.mean().item():2.2g}')\n", - " plt.xlabel(f'{now.date()}')\n", - " plt.ylabel('energy(kWh/hh)')\n", - " plt.legend()\n", - " plt.xticks(rotation=45)\n", - " plt.show()\n", - " \n", - "def plot_performance(ds_preds, full=False):\n", - " \"\"\"Multiple plots using xr_preds\"\"\"\n", - " plot_prediction(ds_preds, 24)\n", - "\n", - " ds_preds.mean('t_source').plot.scatter('t_ahead_hours', 'nll') # Mean over all predictions\n", - " n = len(ds_preds.t_source)\n", - " plt.ylabel('Negative Log Likelihood (lower is better)')\n", - " plt.xlabel('Hours ahead')\n", - " plt.title(f'NLL vs time ahead (no. samples={n})')\n", - " plt.show()\n", - "\n", - " # Make a plot of the NLL over time. Does this solution get worse with time?\n", - " if full:\n", - " d = ds_preds.mean('t_ahead').groupby('t_source').mean().plot.scatter('t_source', 'nll')\n", - " plt.xticks(rotation=45)\n", - " plt.title('NLL over source time (lower is better)')\n", - " plt.show()\n", - "\n", - " # A scatter plot is easy with xarray\n", - " if full:\n", - " plt.figure(figsize=(5, 5))\n", - " ds_preds.plot.scatter('y_true', 'y_pred', s=.01)\n", - " plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.374161Z", - "start_time": "2020-10-24T01:46:56.321823Z" - } - }, - "outputs": [], - "source": [ - "def plot_hist(trainer):\n", - " try:\n", - " df_hist = pd.read_csv(trainer.logger.experiment.metrics_file_path)\n", - " df_hist['epoch'] = df_hist['epoch'].ffill()\n", - " df_histe = df_hist.set_index('epoch').groupby('epoch').mean()\n", - " if len(df_histe)>1:\n", - " df_histe[['loss/train', 'loss/val']].plot(title='history')\n", - " return df_histe\n", - " except Exception:\n", - " pass" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Lightning" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.443085Z", - "start_time": "2020-10-24T01:46:56.384266Z" - } - }, - "outputs": [], - "source": [ - "import pytorch_lightning as pl\n", - "\n", - "class PL_MODEL(pl.LightningModule):\n", - " def __init__(self, model, lr=3e-4, patience=2, weight_decay=0):\n", - " super().__init__()\n", - " self._model = model\n", - " self.lr = lr\n", - " self.patience = patience\n", - " self.weight_decay = weight_decay\n", - "\n", - " def forward(self, x_past, y_past, x_future, y_future=None):\n", - " \"\"\"Eval/Predict\"\"\"\n", - " y_dist, extra = self._model(x_past, y_past, x_future, y_future)\n", - " return y_dist, extra\n", - "\n", - " def training_step(self, batch, batch_idx, phase='train'):\n", - " x_past, y_past, x_future, y_future = batch\n", - " y_dist, extra = self.forward(*batch)\n", - " loss = -y_dist.log_prob(y_future).mean()\n", - " self.log_dict({f'loss/{phase}':loss})\n", - " if ('loss' in extra) and (phase=='train'):\n", - " # some models have a special loss\n", - " loss = extra['loss']\n", - " self.log_dict({f'model_loss/{phase}':loss})\n", - " return loss\n", - "\n", - " def validation_step(self, batch, batch_idx):\n", - " return self.training_step(batch, batch_idx, phase='val')\n", - " \n", - " def configure_optimizers(self):\n", - " optim = torch.optim.AdamW(self.parameters(), lr=self.lr, weight_decay=self.weight_decay)\n", - " scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(\n", - " optim,\n", - " patience=self.patience,\n", - " verbose=True,\n", - " min_lr=1e-7,\n", - " )\n", - " return {'optimizer': optim, 'lr_scheduler': scheduler, 'monitor': 'loss/val'}" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.497567Z", - "start_time": "2020-10-24T01:46:56.447341Z" - }, - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [ - "# # Run\n", - "from torch.utils.data import DataLoader\n", - "from pytorch_lightning.loggers import CSVLogger\n", - "from pytorch_lightning.callbacks.early_stopping import EarlyStopping" - ] - }, - { - "cell_type": "code", - "execution_count": 25, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.558979Z", - "start_time": "2020-10-24T01:46:56.502082Z" - } - }, - "outputs": [], - "source": [ - "# Init data\n", - "x_past, y_past, x_future, y_future = ds_train.get_rows(10)\n", - "input_size = x_past.shape[-1]\n", - "output_size = y_future.shape[-1]\n", - "\n", - "dl_train = DataLoader(ds_train,\n", - " batch_size=batch_size,\n", - " shuffle=True,\n", - " pin_memory=num_workers==0,\n", - " num_workers=num_workers)\n", - "dl_test = DataLoader(ds_test, batch_size=batch_size, num_workers=num_workers)" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.635461Z", - "start_time": "2020-10-24T01:46:56.564625Z" - } - }, - "outputs": [], - "source": [ - "import gc\n", - "\n", - "def free_mem():\n", - " gc.collect()\n", - " torch.cuda.empty_cache()\n", - " gc.collect()" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.751071Z", - "start_time": "2020-10-24T01:46:56.640655Z" - }, - "lines_to_end_of_cell_marker": 2, - "lines_to_next_cell": 0 - }, - "outputs": [], - "source": [ - "from seq2seq_time.models.lstm_seq2seq import LSTMSeq2Seq\n", - "from seq2seq_time.models.lstm_seq import LSTMSeq\n", - "from seq2seq_time.models.lstm import LSTM\n", - "from seq2seq_time.models.baseline import BaselineLast\n", - "from seq2seq_time.models.transformer import Transformer\n", - "from seq2seq_time.models.transformer_autor import TransformerAutoR\n", - "from seq2seq_time.models.transformer_seq2seq import TransformerSeq2Seq\n", - "from seq2seq_time.models.transformer_seq import TransformerSeq\n", - "from seq2seq_time.models.neural_process import RANP\n", - "from seq2seq_time.models.transformer_process import TransformerProcess\n", - "# ## Plots" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.827850Z", - "start_time": "2020-10-24T01:46:56.756046Z" - } - }, - "outputs": [], - "source": [ - "# PL_MODEL(TransformerAutoR(input_size, output_size, hidden_out_size=32),\n", - "# patience=patience,\n", - "# lr=2e-5,\n", - "# weight_decay=1e-3)" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:46:56.908831Z", - "start_time": "2020-10-24T01:46:56.832269Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": [ - "[()>,\n", - " ()>,\n", - " ()>,\n", - " ()>,\n", - " ()>,\n", - " ()>,\n", - " ()>]" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "models = [\n", - "# TransformerAutoR2(input_size,\n", - "# output_size),\n", - " lambda: TransformerAutoR(input_size,\n", - " output_size, hidden_out_size=32),\n", - " lambda: RANP(input_size,\n", - " output_size, hidden_dim=32, \n", - " latent_dim=64, n_decoder_layers=4),\n", - " lambda: LSTM(input_size,\n", - " output_size,\n", - " hidden_size=80,\n", - " lstm_layers=3,\n", - " lstm_dropout=0.3),\n", - " lambda: LSTMSeq2Seq(input_size,\n", - " output_size,\n", - " hidden_size=64,\n", - " lstm_layers=2,\n", - " lstm_dropout=0.25),\n", - " lambda: TransformerSeq2Seq(input_size,\n", - " output_size,\n", - " hidden_size=128,\n", - " nhead=8,\n", - " nlayers=4,\n", - " attention_dropout=0.2),\n", - " lambda: Transformer(input_size,\n", - " output_size,\n", - " attention_dropout=0.2,\n", - " nhead=8,\n", - " nlayers=8,\n", - " hidden_size=128),\n", - "# lambda: TransformerSeq(input_size,\n", - "# output_size),\n", - "# lambda: LSTMSeq(input_size,\n", - "# output_size),\n", - " lambda :TransformerProcess(input_size,\n", - " output_size, hidden_size=16,\n", - " latent_dim=8, dropout=0.5,\n", - " nlayers=4,)\n", - "]\n", - "models" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:47:14.783481Z", - "start_time": "2020-10-24T01:46:56.913295Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "----------------------------------------\n", - "0 | _model | BaselineLast | 1 \n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "444e9276a8124fe3abd8df2350caf004", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "None\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "404b8f8f22344752a17e2f4604d1122c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=5.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "baseline nll: 1.4\n" - ] - } - ], - "source": [ - "# Baseline model\n", - "pt_model = BaselineLast()\n", - "model = PL_MODEL(pt_model).to(device)\n", - "trainer = pl.Trainer(gpus=1,\n", - " max_epochs=1, \n", - " limit_train_batches=0.01,\n", - " logger=CSVLogger(\"logs\",\n", - " name=type(pt_model).__name__),\n", - " )\n", - "trainer.fit(model, dl_train, dl_test)\n", - "print(plot_hist(trainer))\n", - "ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*8,\n", - " device=device,\n", - " scaler=output_scaler)\n", - "print(f'baseline nll: {ds_predss.nll.mean().item():2.2g}')" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-23T23:36:11.052891Z", - "start_time": "2020-10-23T23:36:11.048874Z" - } - }, - "source": [ - "## Train" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-23T01:57:08.860742Z", - "start_time": "2020-10-22T23:52:55.304213Z" - }, - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "--------------------------------------------\n", - "0 | _model | TransformerAutoR | 168 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "TransformerAutoR\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "4db0ca46fa7a45c082b6f7f35237b187", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 6: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "480549372bce447ab058425eb3dfb46d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "TransformerAutoR\n", - "mean_NLL 0.26\n", - " loss/train step loss/val\n", - "epoch \n", - "0.0 0.017383 998.871795 0.060210\n", - "1.0 -0.203263 2923.750000 0.087333\n", - "2.0 -0.242032 4873.625000 0.040320\n", - "3.0 -0.290320 6823.500000 0.075916\n", - "4.0 -0.321315 8773.375000 0.171662\n", - "5.0 -0.340539 10723.250000 0.225665\n", - "6.0 -0.391934 12673.125000 0.259400\n" - ] - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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o0cHZqBBoqKiAu+++y7uvvtu5OXlYeDAgXj//ffx1FNPQS6XA4DdJT2GYfr8L4Hu5ozWmLOKigr861//woIFCzBy5EhIpVI0NjYiLi4OsbGxAGD9Y0PrTODJnNmiddb5h3jo0KFQq9U4f/48fvjhB8yaNct6H0vwTOtM4Mmc2aJ1BlRVVWHlypV48sknMXLkSGg0Guj1emu3CIB+nznyZM5s+WqdUQa6C5bTftLS0nD06FEcP34cubm53Wai+6ozZ85ArVZj4sSJ4DgOra2t+Oc//4knnnjCeimF2KM5E6+urg5arRYDBw6EWq3GQw89hMLCQpw9exbXXnstLrnkEvrZdEBz1nMnTpzA8ePHkZmZiZMnT1ozqTfffDMkEglt5HKB5sxzer0er7/+OuRyOWbPno3XX38diYmJOHr0KG677Tb62XQhWOaMVnEXJBIJhg0bhoSEBIwbNw55eXk4deoUtm3bBgBoampyWRPdV2VnZ1tLD1iWhUqlgk6nQ3t7OwDgwoULARxdcKI5Ey81NRUDBgwAx3E4efIkbrvtNtx33324+eab8e9//xvnzp2jPzYOaM56hud5yGQynDlzBhMnToRCocA333wDnU5HgaAbNGfiRERE4O677wbHcfjLX/6CSZMm4f7778fcuXPxwQcfoLq6mn42HQTLnNFKdlBaWory8nJrYGz5YY+MjMTo0aORl5eH6upqvPDCC1i5ciW0Wm0ghxtwlvniOA5SqRRxcXEAhN3DBoMBLS0tkEgk2LFjB15++WXo9frADjgI0JyJZ/tzabmMybIsJkyYgMsvvxwAMG7cOIwaNQodHR0BHm1woDkTz/H3P8MwGDRoELKysrB7925s374dv/vd7yCVSvH99987bcLsi2jOxHOcs4iICNx111147LHHrD+b48ePR35+fp+PMSyCcc4ogLZx5MgRLFmyBO+99x7Onj3rlF2Ojo5GUVERLly4gDNnzuCBBx7o07VItvNVWVlpN18Mw0Aul2PQoEH44osvsHXrVvzpT39CREREAEcceDRn4nX1c2nbvmjXrl04depUnz/+F6A56wl3c2YymXD+/Hm8//77mDt3Lm677TYMHz4c48aN6/PZVJoz8dzNmUKhwPjx463327VrF06fPo34+PhADTVoBOucUQ30b4xGI7Zt24bY2FjU19fj5MmTuPHGGzFgwADr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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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6enpmDt3rqHjIyKql6ytrTFjxgzExcVh9+7dcHV1RWRkJHx9fQEATz75JP7880+88sor8PPzQ+/evXH27Fmtj1dUVIQtW7bgxo0bsLGxQYcOHfDMM89UuV+jRo3w8ssvY+XKlSgrK0OXLl1UM51IMXbsWOzYsQNz5sxBYWEhXF1dMWjQIHTs2BHDhg3D6tWrMXHiRLi6uuKpp55CUlKSat833ngDMTExePnll9G6dWv07dtXVWJCRGSOZEIIIeWOJSUlOHHiBHJycuDm5oYuXbqo1dIREREREdE9khNtIiIiIiKSrtrSkbfeeqvanWUyGebPn1+rARERERERWYJqE+0+ffpobM/Ly8MPP/ygNuKdiIiIiIju0al0pLCwELt378a+ffvQq1cvPPfcc2rztBIRERERUQVJifbdu3fxzTff4H//+x86d+6MUaNGwdvb2xjxERERERGZpWoT7dLSUnz//ff47rvvEBQUhLCwMDRr1syY8RERERERmaVqE+1XXnkFSqUSzzzzDFq0aKHxPu3atTNYcERERERE5qrawZA2NjYAgJ9++knjdplMhjVr1tR+VEREREREZo7zaBMRERERGYBVXQdARERERGSJmGgTERERERkAE20iIiIiIgNgok1EREREZABMtImIiIiIDICJNhERERGRAfw/X0H4RxledYgAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "--------------------------------\n", - "0 | _model | RANP | 108 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "RANP\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "ba01671a2eca4aafa806d2cc742767d4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 7: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "b25d0da1376a4663a584512784aa8400", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RANP\n", - "mean_NLL -0.04\n", - " loss/train model_loss/train step loss/val\n", - "epoch \n", - "0.0 0.098570 0.099123 998.871795 0.055426\n", - "1.0 -0.136263 -0.135751 2923.750000 0.008383\n", - "2.0 -0.184636 -0.184242 4873.625000 -0.035571\n", - "3.0 -0.203627 -0.203329 6823.500000 -0.064338\n", - "4.0 -0.231923 -0.231709 8773.375000 -0.052904\n", - "5.0 -0.250552 -0.250389 10723.250000 -0.062541\n", - "6.0 -0.274888 -0.274789 12673.125000 -0.015443\n", - "7.0 -0.279982 -0.279893 14623.000000 -0.041318\n" - ] - }, - { - "data": { - "image/png": "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AgFOPvlkTjrpJJ544gm2bNmCZVm8//77DB8+nIsuuoixY8cCsHXrVh588EG++OIL8vPzOeecc5g2bRrgbtf9X//1X7z11ls0NDQwZswYrr322vg1/+///o/HH3+clpYWTj75ZP7pn/4pFR9dRGRA0siyiMgAYds2t99+O2PHjuWPf/wjixYt4vnnn+eDDz4A4J133uHb3/42Dz/8MEceeSSLFy8mEokQiUS4/fbbOeSQQ3jwwQfjW/Ju27YNgMcee4wNGzZw880388gjj3DuuedijIlf97PPPuOee+7h2muv5cknn2Tr1q2p+PgiIgOSwrKIyACxfv16amtrOe200/B6vQwbNoyZM2eycuVKAEpKSpgxYwZer5dTTjmF1tZWSktLKS0tJRwOM2fOHLxeL1OmTOGwww7jzTffxLZtXn31VebOnUt+fj6WZTF58mR8Pl/8uqeffjppaWmMHTuW/fbbj02bNqWqC0REBhxNwxARGSB27dpFVVUVc+fOjR+zbZsDDjiAgoICQqFQ/LhlWYRCIaqqqgAoKCjAstrHPwoLC6msrKSuro7W1laKi4t7vG5ubm78vt/vJxwO992HEhEZ5BSWRUQGiIKCAoqKirj33nu7PPfEE09QUVERf2zbNhUVFeTl5QFQXl6ObdvxwFxeXs7w4cPJysrC5/OxY8eO+PxmERHZe5qGISIyQEyYMIFgMMiyZctoaWnBtm02b97MunXrANiwYQNvv/020WiU559/Hp/Px8SJE5k4cSKBQIBnn32WSCTCmjVrePfddznyyCOxLIvjjz+exx57jMrKSmzbZu3atbS2tqb404qIDA7GcRwn1Y0QERFXZWUljz32GGvWrCESiTBixAjOPPNMPvvss4RqGMXFxcybN4+SkhIAtmzZklAN4+yzz+Zb3/oW4FbD+POf/8zf//53wuEwY8eO5ZprrqG6uppf/OIX/OUvf8Hj8QBw/fXXc/TRRzNz5syU9YGIyECisCwiMgg88cQT7Nixg/nz56e6KSIi+xRNwxARERER6YHCsoiIiIhIDzQNQ0RERESkBxpZFhERERHpgcKyiIiIiEgPFJZFRERERHqgsCwiIiIi0gOFZRERERGRHigsi4iIiIj04P8H2eEO7TXQbyMAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "--------------------------------\n", - "0 | _model | LSTM | 136 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "LSTM\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "017d325f0eea43b681e943eae66f4c8f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 4: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f1cca0c0c7b64d37b680c6ae35a3700d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "LSTM\n", - "mean_NLL 0.41\n", - " loss/train step loss/val\n", - "epoch \n", - "0.0 0.107718 998.871795 0.260356\n", - "1.0 -0.144750 2923.750000 0.365532\n", - "2.0 -0.203951 4873.625000 0.343091\n", - "3.0 -0.245870 6823.500000 0.305063\n", - "4.0 -0.271529 8773.375000 0.409992\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAssAAADkCAYAAABubWkRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAA/pUlEQVR4nO3deXxU9b0//tdntuwTJjOQkEDYRRGUJUhA1puI16WaVkFcekVuS9FyEVxuTQW1VVoUEfT3A1FAKFUr1IWWe/GKKZuIQNgEoyKLCkhCyL5nlvP5/nGSyUySITlMkpkhr+fjkYczZz4z5+TdU3jxmff5HCGllCAiIiIioiZ0gT4AIiIiIqJgxbBMREREROQDwzIRERERkQ8My0REREREPjAsExERERH5wLBMREREROQDwzIRUQebOHEifvWrX/l8/bnnnkP//v078IiIiMgXhmUioiDzxBNPYO/eva0e379/fzz33HPtd0BERJ2YIdAHQERE3qKjoxEdHd3h+1UUBVJK6PX6Dt83EVGw4swyEVGAPP/880hISEBcXBymT5+OyspKAE3bMM6dO4e77roLNpsNERER6Nu3LxYvXgxAbek4deoU/vCHP0AIASEEfvjhBwDA3r17MX78eERERMBiseC+++5Dfn6++3Pr97NhwwZcffXVMJlMWLFiBfR6Pc6ePet1rH/5y18QExOD8vLydq4KEVFwYVgmIgqA999/H0VFRdixYwfeffddbNq0CS+99FKzYx955BGUlpYiKysL33zzDdasWYMePXoAAD788EP07t0bjz/+OHJzc5Gbm4uePXsiLy8PkydPRo8ePbB//35s3rwZX331Fe666y6vzz5//jxWrFiBdevW4euvv8b06dMxYMAAvPXWW17jVq9ejWnTpiEmJqZ9CkJEFKTYhkFEFADJyclYunQpAODqq6/GtGnTsHXrVvzhD39oMvbHH3/Ez3/+cwwdOhQA0Lt3b/drcXFx0Ov1iI6ORkJCgnv78uXLYTabsW7dOphMJgDAX//6VwwdOhS7du3C+PHjAQA1NTX461//iuTkZPd7Z86ciVdffRULFiyATqfD8ePHsXv3brzyyittXQYioqDHmWUiogCoD771kpKScOHChWbHzp07F3/6058watQo/O53v8OuXbta/PycnBykpqa6gzIAXH/99YiNjUVOTo57W3x8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gpycHHz66acoKirCrbfeitTUVHz00UeYMGECHn30UbhcLlRXVyMnJwd5eXnYtm0bAKC0tBSAerdDg8EAs9mMJ554AkePHsXChQsBAEuWLMHRo0fx0UcfISIiAtXV1fjb3/6G8PBwnD59Gr/97W/x8ccfNzmunJwcfPLJJzCZTBg/fjweeughJCUltVGFKBSJsHAgLBywxavPLzFWSgnUVKuhuT5cl3nOXNfNZBdcgPz+O3WboqjvbfxhkdHulpCGMN2lbqa6izpzXd82EhUNobtyV6EhIqLQFNJhOdD279+PjIwM6PV6dO3aFampqfjyyy8xdOhQPP7443A6nbj55psxePBgJCcn48yZM5g/fz7S0tIwYcIEAMDOnTvdj5szefJk9xJvDocDTz/9NL7++mvodDqcPn262feMHTsWZrMZAHDVVVfhp59+YlimVhNCqDPIEZFAN/WORpcM14qi9lCXeYbpEnfQVmeuy4Dcc5Df5QCV5UDdjUO9wrXQAdExTWapKxISoegMjVpCuqjL8fFiRiIiamchHZZ1034d0P37ulN4amoqPvjgA/zrX//Co48+ilmzZmHKlCn49NNPsWPHDqxbtw6bN2/GK6+8gm3btuE3v/mNz31ERka6H69atQpdu3bFp59+CkVR0Ldv32bfYzI19JXqdDo4675SJ2oPQqcDomLUn+491G2XGC8Vl7r6h+csdeOWkLJS9Vuj8lJUVlWo72v8QXq9Oitd12MtPC5sbNISYo4FwiIYromISLOQDsuBlpqairfffhtTpkxBSUkJ9u3bhwULFuDcuXNISEjA/fffj6qqKhw7dgxpaWkwGo247bbb0KtXL8ybNw9SSnzzzTe49tprAQDR0dGoqKjwub+ysjJ0794dOp0Of//73+FyuTrqVyVqM0KnV3uezV3U5y2Mt8bGouDH094tIXWB2jNsy4t5auCuqQbQTLg2mhpmpWNiIeofe13M6BG2TWFt+nsTEVFo8issV1RUYOnSpbh48SK6du2KefPmITo62mtMQUEBli9fjpKSEgghkJ6ejltvvdWvgw4Wt9xyCw4ePIibbroJQgg8/fTT6NatGzZu3IiVK1fCYDAgKioKr776KnJzc/HYY49BqevtzMzMxNGjRzF48GD3bNeYMWOwfPly3HTTTZg9e3aT/T344IOYOXMm/ud//gc33nij16wz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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAtoAAAECCAYAAADAa3DsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAABHtElEQVR4nO3deViU5foH8O8wiIisAwiCCuGOiLv9NNfAJSujUrG0wqUTxziaR1TMNc0tdwPUwq3tpKYeraxOqLmknVDcScJwOQjIjqhswzy/P4jJkZnhZWQGGL6f6+KKed55570HHuzm4X7vRyaEECAiIiIiohplUdsBEBERERGZIybaRERERERGwESbiIiIiMgImGgTERERERkBE20iIiIiIiNgok1EREREZARMtImIiIiIjICJNhERERGREVjqO1hWVoYzZ84gPj4eN2/exP3799G0aVN4eXmhW7du6NWrF+RyualiJSIiIiKqN2S6dob88ccfsW/fPrRo0QIdO3ZEixYtYG1tjaKiIqSkpOC3335DSkoKXnzxRQwdOtTUcRMRERER1Wk6V7TT0tKwfPlyODo6VjrWu3dvAEBubi6+/vprowVHRERERFRf6VzRrqBSqZCQkIAOHTrA0lJvpQkREREREf2pypshLSws8MEHHzDJJiIiIiKqBkldRzp27Ijff//d2LEQEREREZkNScvUrq6uWL58OXr27AlnZ2fIZDL1seDgYKMFR0RERERUX0lKtEtKStCrVy8AQE5OjlEDIiIiIiIyB1XeDElERERERNUn+Q7HlJQU/PLLL8jPz8ekSZOQmpqK0tJSeHl5GTM+IiIiIqJ6SdLNkKdPn8bChQuRk5OD48ePAwAKCwvxySefGDU4IiIiIqL6StKK9u7duzF//nx4e3vj9OnTAAAvLy/cuHHDmLEREREREdVbkla08/PzK5WIyGQyje4jRERERET0F0mJto+Pj7pkpMLPP/+MNm3aGCUoIiIiIqL6TlLXkdu3b+P9999Hs2bNkJSUhE6dOiE1NRXz5s1D8+bNTREnEREREVG9Irm9X3FxMc6ePYusrCw4OzujR48esLa2NnZ8RERERET1kqREe9u2bZg4cWKl8R07diAkJMQYcRERERER1WuSarSPHTumdfzRum0iIiIiIiqnt73fkSNHAABlZWXqzytkZGTAzs7OeJERERER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mJgY7N+/HwqFAmFhYfD09AQAPPvss/jjjz/w5ptvwsvLC/369cOlS5d0vl5hYSF27tyJO3fuwMrKCl26dMHIkSMrPa9JkyaYMGEC1q1bh9LSUvTo0UPd6USKcePG4auvvsLcuXNRUFAAhUKBIUOGoGvXrhgxYgQ2btyISZMmQaFQ4LnnnkNcXJz63KlTpyIqKgoTJkxAu3btMGDAAHWJCRFRfSQTQggpTywuLsbZs2eRlZUFZ2dn9OjRQ6OWjoiIiIiI/iI50SYiIiIiIun0lo689957ek+WyWRYsGBBjQZERERERGQO9Cba/fv31zqek5OD7777TuOOdyIiIiIi+ku1SkcKCgqwf/9+HD58GH379sWoUaM0+rQSEREREVE5SYn2gwcPcPDgQfzwww/o3r07Ro8eDXd3d1PER0RERERUL+lNtEtKSvDtt9/im2++ga+vL8aMGYOWLVuaMj4iIiIionpJb6L95ptvQqVSYeTIkWjdurXW5/j5+RktOCIiIiKi+krvzZBWVlYAgP/85z9aj8tkMkRGRtZ8VERERERE9Rz7aBMRERERGYFFbQdARERERGSOmGgTERERERkBE20iIiIiIiNgok1EREREZARMtImIiIiIjICJNhERERGREfw/4KCrHglbYbYAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "---------------------------------------\n", - "0 | _model | LSTMSeq2Seq | 109 K \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "LSTMSeq2Seq\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "cf5c59331e714a92ab09e7be521f4012", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Epoch 5: reducing learning rate of group 0 to 3.0000e-05.\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "4404e4388b04452787571268ebab4ae5", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=20.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "LSTMSeq2Seq\n", - "mean_NLL 0.08\n", - " loss/train step loss/val\n", - "epoch \n", - "0.0 0.124480 998.871795 0.068806\n", - "1.0 -0.161390 2923.750000 0.060152\n", - "2.0 -0.206281 4873.625000 0.061572\n", - "3.0 -0.224555 6823.500000 0.076988\n", - "4.0 -0.248640 8773.375000 0.081371\n", - "5.0 -0.259238 10723.250000 0.076422\n" - ] - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "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\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "GPU available: True, used: True\n", - "TPU available: False, using: 0 TPU cores\n", - "LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [0]\n", - "\n", - " | Name | Type | Params\n", - "----------------------------------------------\n", - "0 | _model | TransformerSeq2Seq | 2 M \n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "TransformerSeq2Seq\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validation sanity check'), FloatProgress(value=1.0, bar_style='info', layout=Layout…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "ad27ef08057746ba952b80027ffe647f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Training'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), max…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='Validating'), FloatProgress(value=1.0, bar_style='info', layout=Layout(flex='2'), m…" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/utilities/distributed.py:45: UserWarning: Detected KeyboardInterrupt, attempting graceful shutdown...\n", - " warnings.warn(*args, **kwargs)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "ename": "KeyboardInterrupt", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mtrain\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 482\u001b[0m \u001b[0;31m# run train epoch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 483\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain_loop\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_training_epoch\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 484\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/training_loop.py\u001b[0m in \u001b[0;36mrun_training_epoch\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 540\u001b[0m \u001b[0;31m# ------------------------------------\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 541\u001b[0;31m \u001b[0mbatch_output\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_training_batch\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbatch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdataloader_idx\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 542\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/training_loop.py\u001b[0m in \u001b[0;36mrun_training_batch\u001b[0;34m(self, batch, batch_idx, dataloader_idx)\u001b[0m\n\u001b[1;32m 677\u001b[0m \u001b[0moptimizer\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 678\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mhiddens\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 679\u001b[0m )\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/training_loop.py\u001b[0m in \u001b[0;36mtraining_step_and_backward\u001b[0;34m(self, split_batch, batch_idx, opt_idx, optimizer, hiddens)\u001b[0m\n\u001b[1;32m 759\u001b[0m \u001b[0;31m# lightning module hook\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 760\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtraining_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msplit_batch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mopt_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhiddens\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 761\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/training_loop.py\u001b[0m in \u001b[0;36mtraining_step\u001b[0;34m(self, split_batch, batch_idx, opt_idx, hiddens)\u001b[0m\n\u001b[1;32m 303\u001b[0m \u001b[0margs\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuild_train_args\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msplit_batch\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mopt_idx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhiddens\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 304\u001b[0;31m \u001b[0mtraining_step_output\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtraining_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 305\u001b[0m \u001b[0mtraining_step_output\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcall_hook\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'training_step_end'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtraining_step_output\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36mtraining_step\u001b[0;34m(self, args)\u001b[0m\n\u001b[1;32m 61\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 62\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__training_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 63\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36m__training_step\u001b[0;34m(self, args)\u001b[0m\n\u001b[1;32m 69\u001b[0m \u001b[0margs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 70\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtraining_step\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 71\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0moutput\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m\u001b[0m in \u001b[0;36mtraining_step\u001b[0;34m(self, batch, batch_idx, phase)\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0mx_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_future\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_future\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbatch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 17\u001b[0;31m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mbatch\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 18\u001b[0m \u001b[0mloss\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m-\u001b[0m\u001b[0my_dist\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlog_prob\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0my_future\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, x_past, y_past, x_future, y_future)\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;34m\"\"\"Eval/Predict\"\"\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 12\u001b[0;31m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_model\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_past\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx_future\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_future\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 13\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0my_dist\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mextra\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/module.py\u001b[0m in \u001b[0;36m_call_impl\u001b[0;34m(self, *input, **kwargs)\u001b[0m\n\u001b[1;32m 721\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 722\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 723\u001b[0m for hook in itertools.chain(\n", - "\u001b[0;32m/media/wassname/Storage5/projects2/3ST/seq2seq-time/seq2seq_time/models/transformer_seq2seq.py\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, past_x, past_y, future_x, future_y)\u001b[0m\n\u001b[1;32m 61\u001b[0m \u001b[0;31m# requires (C, B, hidden_dim)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 62\u001b[0;31m \u001b[0mmemory\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mencoder\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msrc_key_padding_mask\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0msrc_key_padding_mask\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 63\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/module.py\u001b[0m in \u001b[0;36m_call_impl\u001b[0;34m(self, *input, **kwargs)\u001b[0m\n\u001b[1;32m 721\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 722\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 723\u001b[0m for hook in itertools.chain(\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/transformer.py\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, src, mask, src_key_padding_mask)\u001b[0m\n\u001b[1;32m 180\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mmod\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlayers\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 181\u001b[0;31m \u001b[0moutput\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmod\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0moutput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msrc_mask\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmask\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msrc_key_padding_mask\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0msrc_key_padding_mask\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 182\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/module.py\u001b[0m in \u001b[0;36m_call_impl\u001b[0;34m(self, *input, **kwargs)\u001b[0m\n\u001b[1;32m 721\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 722\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 723\u001b[0m for hook in itertools.chain(\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/transformer.py\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, src, src_mask, src_key_padding_mask)\u001b[0m\n\u001b[1;32m 294\u001b[0m key_padding_mask=src_key_padding_mask)[0]\n\u001b[0;32m--> 295\u001b[0;31m \u001b[0msrc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msrc\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdropout1\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msrc2\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 296\u001b[0m \u001b[0msrc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnorm1\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msrc\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/module.py\u001b[0m in \u001b[0;36m_call_impl\u001b[0;34m(self, *input, **kwargs)\u001b[0m\n\u001b[1;32m 721\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 722\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 723\u001b[0m for hook in itertools.chain(\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/modules/dropout.py\u001b[0m in \u001b[0;36mforward\u001b[0;34m(self, input)\u001b[0m\n\u001b[1;32m 57\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mforward\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0minput\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mTensor\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m->\u001b[0m \u001b[0mTensor\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 58\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mF\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdropout\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mp\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtraining\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minplace\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 59\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/nn/functional.py\u001b[0m in \u001b[0;36mdropout\u001b[0;34m(input, p, training, inplace)\u001b[0m\n\u001b[1;32m 972\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0minplace\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 973\u001b[0;31m else _VF.dropout(input, p, training))\n\u001b[0m\u001b[1;32m 974\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: ", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;31m# Train\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 26\u001b[0;31m \u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdl_train\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdl_test\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 27\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 28\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mfit\u001b[0;34m(self, model, train_dataloader, val_dataloaders, datamodule)\u001b[0m\n\u001b[1;32m 438\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcall_hook\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'on_fit_start'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 439\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 440\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 441\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maccelerator_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mteardown\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 442\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/gpu_accelerator.py\u001b[0m in \u001b[0;36mtrain\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 52\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 53\u001b[0m \u001b[0;31m# train or test\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 54\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain_or_test\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 55\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresults\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 56\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/accelerators/accelerator.py\u001b[0m in \u001b[0;36mtrain_or_test\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 64\u001b[0m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_test\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 66\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 67\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresults\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 68\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py\u001b[0m in \u001b[0;36mtrain\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 520\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 521\u001b[0m \u001b[0;31m# hook\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 522\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrain_loop\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mon_train_end\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 523\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mrun_evaluation\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtest_mode\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mbool\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mFalse\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmax_batches\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/pytorch_lightning/trainer/training_loop.py\u001b[0m in \u001b[0;36mon_train_end\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 197\u001b[0m \u001b[0mmodel\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtrainer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_model\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 198\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcpu\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 199\u001b[0;31m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcuda\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mempty_cache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 200\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 201\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mcheck_checkpoint_callback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mshould_save\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mis_last\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/torch/cuda/memory.py\u001b[0m in \u001b[0;36mempty_cache\u001b[0;34m()\u001b[0m\n\u001b[1;32m 85\u001b[0m \"\"\"\n\u001b[1;32m 86\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mis_initialized\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 87\u001b[0;31m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_C\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_cuda_emptyCache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 88\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 89\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - } - ], - "source": [ - "for m_fn in models:\n", - " pt_model = m_fn()\n", - " name = type(pt_model).__name__\n", - " print(name)\n", - "\n", - " # Wrap in lightning\n", - " patience = 2\n", - " model = PL_MODEL(pt_model, patience=patience, lr=2e-5, weight_decay=1e-3).to(device)\n", - "\n", - " # Trainer \n", - " trainer = pl.Trainer(gpus=1,\n", - " min_epochs=2,\n", - " max_epochs=30,\n", - " amp_level='O1',\n", - " precision=16,\n", - " gradient_clip_val=1,\n", - " logger=CSVLogger(\"logs\",\n", - " name=type(pt_model).__name__),\n", - " callbacks=[\n", - " EarlyStopping(monitor='loss/val', patience=patience*2),\n", - "# PrintTableMetricsCallback2()\n", - " ],\n", - " )\n", - "\n", - " # Train\n", - " trainer.fit(model, dl_train, dl_test)\n", - "\n", - "\n", - "\n", - " ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*2,\n", - " device=device,\n", - " scaler=output_scaler)\n", - " \n", - " print(name)\n", - " print(f'mean_NLL {ds_predss.nll.mean().item():2.2f}')\n", - " \n", - " # Performance\n", - " ds_preds = ds_predss.isel(block=0)\n", - " print(plot_hist(trainer))\n", - " plot_performance(ds_preds)\n", - " \n", - " model.cpu()\n", - " free_mem()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "lines_to_next_cell": 2 - }, - "source": [ - "# Plots" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:47:14.853130Z", - "start_time": "2020-10-24T01:47:14.787297Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pt model name RANP\n", - "latest_checkpoint logs/RANP/version_26/checkpoints/epoch=7.ckpt\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "# Get latest checkpoint for a model type...\n", - "pt_model = models[1]()\n", - "name = type(pt_model).__name__\n", - "\n", - "checkpoints = (Path('logs')/name).glob('version_*')\n", - "sort_checkpoints = lambda f:int(f.stem.split('_')[-1])\n", - "checkpoints = sorted(checkpoints, key=sort_checkpoints)\n", - "latest_checkpoint = checkpoints[-1]\n", - "checkpoint_f = sorted(latest_checkpoint.glob('checkpoints/*.ckpt'))[-1]\n", - "print('pt model name', name)\n", - "print('latest_checkpoint', checkpoint_f)" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:47:14.934567Z", - "start_time": "2020-10-24T01:47:14.857199Z" - }, - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "PL_MODEL(\n", - " (_model): RANP(\n", - " (_lstm): LSTM(18, 32, num_layers=2, batch_first=True)\n", - " (_latent_encoder): LatentEncoder(\n", - " (_encoder): BatchMLP(\n", - " (initial): NPBlockRelu2d(\n", - " (linear): Linear(in_features=33, out_features=32, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (encoder): Sequential()\n", - " (final): Linear(in_features=32, out_features=32, bias=True)\n", - " )\n", - " (_self_attention): Attention(\n", - " (_W): MultiheadAttention(\n", - " (out_proj): _LinearWithBias(in_features=32, out_features=32, bias=True)\n", - " )\n", - " )\n", - " (_penultimate_layer): Linear(in_features=32, out_features=32, bias=True)\n", - " (_mean): Linear(in_features=32, out_features=64, bias=True)\n", - " (_log_var): Linear(in_features=32, out_features=64, bias=True)\n", - " )\n", - " (_deterministic_encoder): DeterministicEncoder(\n", - " (_d_encoder): BatchMLP(\n", - " (initial): NPBlockRelu2d(\n", - " (linear): Linear(in_features=33, out_features=32, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (encoder): Sequential()\n", - " (final): Linear(in_features=32, out_features=32, bias=True)\n", - " )\n", - " (_self_attention): Attention(\n", - " (_W): MultiheadAttention(\n", - " (out_proj): _LinearWithBias(in_features=32, out_features=32, bias=True)\n", - " )\n", - " )\n", - " (_cross_attention): Attention(\n", - " (batch_mlp_k): BatchMLP(\n", - " (initial): NPBlockRelu2d(\n", - " (linear): Linear(in_features=32, out_features=32, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (encoder): Sequential()\n", - " (final): Linear(in_features=32, out_features=32, bias=True)\n", - " )\n", - " (batch_mlp_q): BatchMLP(\n", - " (initial): NPBlockRelu2d(\n", - " (linear): Linear(in_features=32, out_features=32, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (encoder): Sequential()\n", - " (final): Linear(in_features=32, out_features=32, bias=True)\n", - " )\n", - " (_W): MultiheadAttention(\n", - " (out_proj): _LinearWithBias(in_features=32, out_features=32, bias=True)\n", - " )\n", - " )\n", - " )\n", - " (_decoder): Decoder(\n", - " (_future_transform): Linear(in_features=32, out_features=32, bias=True)\n", - " (_decoder): BatchMLP(\n", - " (initial): NPBlockRelu2d(\n", - " (linear): Linear(in_features=128, out_features=128, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (encoder): Sequential(\n", - " (0): NPBlockRelu2d(\n", - " (linear): Linear(in_features=128, out_features=128, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " (1): NPBlockRelu2d(\n", - " (linear): Linear(in_features=128, out_features=128, bias=False)\n", - " (act): ReLU()\n", - " (dropout): Dropout2d(p=0, inplace=False)\n", - " )\n", - " )\n", - " (final): Linear(in_features=128, out_features=128, bias=True)\n", - " )\n", - " (_mean): Linear(in_features=128, out_features=1, bias=True)\n", - " (_std): Linear(in_features=128, out_features=1, bias=True)\n", - " )\n", - " )\n", - ")" - ] - }, - "execution_count": 32, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Load\n", - "model = PL_MODEL(pt_model).to(device)\n", - "model.load_from_checkpoint(str(checkpoint_f), model=pt_model)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:47:28.389561Z", - "start_time": "2020-10-24T01:47:14.942066Z" - } - }, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "5534a3fcc20947d2841a6d20b384a4d5", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict_multi'), FloatProgress(value=0.0, max=12.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "HBox(children=(HTML(value='predict'), FloatProgress(value=0.0, max=10.0), HTML(value='')))" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n" - ] - }, - { - "data": { - "text/plain": [ - "0.023227039724588394" - ] - }, - "execution_count": 33, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "ds_predss = predict_multi(model.to(device),\n", - " ds_test.datasets,\n", - " batch_size*4,\n", - " device=device,\n", - " scaler=output_scaler)\n", - "ds_predss.nll.mean().item()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:26:26.401037Z", - "start_time": "2020-10-24T01:26:26.296172Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:47:28.446786Z", - "start_time": "2020-10-24T01:47:28.394739Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - } - ], - "source": [ - "ds_pred_block = ds_predss.isel(block=1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# holoviews pred" - ] - }, - { - "cell_type": "code", - "execution_count": 45, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:49:06.618815Z", - "start_time": "2020-10-24T01:49:06.434686Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n" - ] - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " if (window.requirejs) {\n", - " require([], function() {\n", - " run_callbacks();\n", - " })\n", - " } else {\n", - " var skip = [];\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " if (skip.indexOf(url) >= 0) { on_load(); continue; }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [];\n", - " var css_urls = [];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " inject_raw_css(\".panel-widget-box {\\n\\tmin-height: 20px;\\n\\tbackground-color: #f5f5f5;\\n\\tborder: 1px solid #e3e3e3 !important;\\n\\tborder-radius: 4px;\\n\\t-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\tbox-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n\\toverflow-x: hidden;\\n\\toverflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n\\tappearance: none;\\n\\t-moz-appearance: none;\\n\\t-webkit-appearance: none;\\n\\n\\tborder: none;\\n\\theight: 20px;\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n\\tcolor: royalblue;\\n\\tposition: relative;\\n\\tmargin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n\\tbackground-color: whiteSmoke;\\n\\tborder-radius: 3px;\\n\\tbox-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n\\tposition: relative;\\n\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n\\tbackground-size: 35px 20px, 100% 100%, 100% 100%;\\n\\tborder-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n\\tborder-radius:3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n\\tbackground-position: 10%;\\n\\tanimation-name: stripes;\\n\\tanimation-duration: 3s;\\n\\tanimation-timing-function: linear;\\n\\tanimation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n\\tcontent:\\\" \\\";\\n\\tposition:absolute;\\n\\theight: 20px;\\n\\ttop:0;\\n\\tleft:0;\\n\\tright:0;\\n\\tbottom:0;\\n\\tborder-radius: 3px;\\n\\tbackground:\\n\\tlinear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " /* BEGIN bokeh.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " const bokeh = factory();\n", - " bokeh.__bokeh__ = true;\n", - " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", - " root.Bokeh = bokeh;\n", - " }\n", - " const Bokeh = root.Bokeh;\n", - " Bokeh[bokeh.version] = bokeh;\n", - " })(this, function() {\n", - " var define;\n", - " var parent_require = typeof require === \"function\" && require\n", - " return (function(modules, entry, aliases, externals) {\n", - " if (aliases === undefined) aliases = {};\n", - " if (externals === undefined) externals = {};\n", - "\n", - " var cache = {};\n", - "\n", - " var normalize = function(name) {\n", - " if (typeof name === \"number\")\n", - " return name;\n", - "\n", - " if (name === \"bokehjs\")\n", - " return entry;\n", - "\n", - " var prefix = \"@bokehjs/\"\n", - " if (name.slice(0, prefix.length) === prefix)\n", - " name = name.slice(prefix.length)\n", - "\n", - " var alias = aliases[name]\n", - " if (alias != null)\n", - " return alias;\n", - "\n", - " var trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", - " var index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", - " if (index != null)\n", - " return index;\n", - "\n", - " return name;\n", - " }\n", - "\n", - " var require = function(name) {\n", - " var mod = cache[name];\n", - " if (!mod) {\n", - " var id = normalize(name);\n", - "\n", - " mod = cache[id];\n", - " if (!mod) {\n", - " if (!modules[id]) {\n", - " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", - " try {\n", - " mod = {exports: externals[id] ? parent_require(id) : {}};\n", - " cache[id] = cache[name] = mod;\n", - " return mod.exports;\n", - " } catch (e) {}\n", - " }\n", - "\n", - " var err = new Error(\"Cannot find module '\" + name + \"'\");\n", - " err.code = 'MODULE_NOT_FOUND';\n", - " throw err;\n", - " }\n", - "\n", - " mod = {exports: {}};\n", - " cache[id] = cache[name] = mod;\n", - " modules[id].call(mod.exports, require, mod, mod.exports);\n", - " } else\n", - " cache[name] = mod;\n", - " }\n", - "\n", - " return mod.exports;\n", - " }\n", - " require.resolve = function(name) {\n", - " return \"\"\n", - " }\n", - "\n", - " var main = require(entry);\n", - " main.require = require;\n", - "\n", - " if (typeof Proxy !== \"undefined\") {\n", - " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", - " main.loader = new Proxy({}, {\n", - " get: function(_obj, module) {\n", - " return require(module);\n", - " }\n", - " });\n", - " }\n", - "\n", - " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", - " if (plugin_aliases === undefined) plugin_aliases = {};\n", - " if (plugin_externals === undefined) plugin_externals = {};\n", - "\n", - " for (var name in plugin_modules) {\n", - " modules[name] = plugin_modules[name];\n", - " }\n", - "\n", - " for (var name in plugin_aliases) {\n", - " aliases[name] = plugin_aliases[name];\n", - " }\n", - "\n", - " for (var name in plugin_externals) {\n", - " externals[name] = plugin_externals[name];\n", - " }\n", - "\n", - " var plugin = require(plugin_entry);\n", - "\n", - " for (var name in plugin) {\n", - " main[name] = plugin[name];\n", - " }\n", - "\n", - " return plugin;\n", - " }\n", - "\n", - " return main;\n", - " })\n", - " ([\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});e(1).__exportStar(e(2),_)},\n", - " function _(t,e,n){\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation.\n", - " \n", - " Permission to use, copy, modify, and/or distribute this software for any\n", - " purpose with or without fee is hereby granted.\n", - " \n", - " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", - " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", - " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", - " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", - " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", - " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", - " PERFORMANCE OF THIS SOFTWARE.\n", - " ***************************************************************************** */\n", - " Object.defineProperty(n,\"__esModule\",{value:!0});var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function o(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function a(t,e){var n=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,a=n.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(r=a.next()).done;)i.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(o)throw o.error}}return i}function i(t){return this instanceof i?(this.v=t,this):new i(t)}n.__extends=function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},n.__assign=function(){return n.__assign=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=0;u--)(o=t[u])&&(i=(a<3?o(i):a>3?o(e,n,i):o(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i},n.__param=function(t,e){return function(n,r){e(n,r,t)}},n.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},n.__awaiter=function(t,e,n,r){return new(n||(n=Promise))((function(o,a){function i(t){try{c(r.next(t))}catch(t){a(t)}}function u(t){try{c(r.throw(t))}catch(t){a(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,u)}c((r=r.apply(t,e||[])).next())}))},n.__generator=function(t,e){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(u){return function(a){if(n)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(n=o[t](e)).value instanceof i?Promise.resolve(n.value.v).then(f,l):s(a[0][2],n)}catch(t){s(a[0][3],t)}var n}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},n.__asyncDelegator=function(t){var e,n;return e={},r(\"next\"),r(\"throw\",(function(t){throw t})),r(\"return\"),e[Symbol.iterator]=function(){return this},e;function r(r,o){e[r]=t[r]?function(e){return(n=!n)?{value:i(t[r](e)),done:\"return\"===r}:o?o(e):e}:o}},n.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=o(t),e={},r(\"next\"),r(\"throw\"),r(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,o){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,o,(e=t[n](e)).done,e.value)}))}}},n.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t},n.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)Object.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e.default=t,e},n.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},n.__classPrivateFieldGet=function(t,e){if(!e.has(t))throw new TypeError(\"attempted to get private field on non-instance\");return e.get(t)},n.__classPrivateFieldSet=function(t,e,n){if(!e.has(t))throw new TypeError(\"attempted to set private field on non-instance\");return e.set(t,n),n}},\n", - " function _(e,r,t){var l=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var t in e)Object.hasOwnProperty.call(e,t)&&(r[t]=e[t]);return r.default=e,r};Object.defineProperty(t,\"__esModule\",{value:!0});var o=e(3);t.version=o.version;var s=e(4);t.index=s.index,t.embed=l(e(4)),t.protocol=l(e(390)),t._testing=l(e(391));var n=e(19);t.logger=n.logger,t.set_log_level=n.set_log_level;var a=e(27);t.settings=a.settings;var i=e(7);t.Models=i.Models;var v=e(5);t.documents=v.documents;var _=e(392);t.safely=_.safely},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.version=\"2.2.2\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(5),s=e(19),r=e(29),d=e(13),_=e(8),c=e(16),i=e(381),a=e(383),u=e(382);var l=e(381);t.add_document_standalone=l.add_document_standalone,t.index=l.index;var m=e(383);t.add_document_from_session=m.add_document_from_session;var f=e(388);t.embed_items_notebook=f.embed_items_notebook,t.kernels=f.kernels;var g=e(382);async function O(e,o,t,c){_.isString(e)&&(e=JSON.parse(r.unescape(e)));const l={};for(const[o,t]of d.entries(e))l[o]=n.Document.from_json(t);const m=[];for(const e of o){const o=u._resolve_element(e),n=u._resolve_root_elements(e);if(null!=e.docid)m.push(await i.add_document_standalone(l[e.docid],o,n,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const r=a._get_ws_url(t,c);s.logger.debug(\"embed: computed ws url: \"+r);try{m.push(await a.add_document_from_session(r,e.token,o,n,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return m}t.BOKEH_ROOT=g.BOKEH_ROOT,t.embed_item=async function(e,o){const t={},n=r.uuid4();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(u.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n},[_]=await c.defer(()=>O(t,[d]));return _},t.embed_items=async function(e,o,t,n){return await c.defer(()=>O(e,o,t,n))}},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(6),_),o.__exportStar(e(121),_)},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(7),r=e(3),i=e(19),_=e(313),a=e(14),l=e(15),c=e(17),h=e(31),d=e(9),f=e(13),u=o.__importStar(e(120)),m=e(25),g=e(8),p=e(272),w=e(85),v=e(81),b=e(121);class y{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new b.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=y,y.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class j{constructor(){s.documents.push(this),this._init_timestamp=Date.now(),this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new y(this),this.idle=new l.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter(e=>e instanceof p.LayoutDOM)}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(i.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&this._interactive_plot.trigger_event(new _.LODEnd),this._interactive_plot=null,this._interactive_timestamp=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=d.copy(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(\"Somehow we didn't detach \"+e);if(0!=this._all_models.size)throw new Error(\"this._all_models still had stuff in it: \"+this._all_models);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){i.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=u.union(e,t.references());const t=new Set(this._all_models.values()),s=u.difference(t,e),o=u.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(i.logger.debug(\"Adding root: \"+e),!d.includes(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new b.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new b.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof v.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof b.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new b.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _references_json(e,t=!0){const s=[];for(const o of e){const e=o.struct();e.attributes=o.attributes_as_json(t),delete e.attributes.id,s.push(e)}return s}static _instantiate_object(e,t,s){const o=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(n.Models(t))(o)}static _instantiate_references_json(e,t){const s=new Map;for(const o of e){const e=o.id,n=o.type,r=o.attributes||{};let i=t.get(e);null==i&&(i=j._instantiate_object(e,n,r),null!=o.subtype&&i.set_subtype(o.subtype)),s.set(i.id,i)}return s}static _resolve_refs(e,t,s,o){function n(e){if(c.is_ref(e)){if(t.has(e.id))return t.get(e.id);if(s.has(e.id))return s.get(e.id);throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}return h.is_NDArray_ref(e)?h.decode_NDArray(e,o):g.isArray(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):g.isPlainObject(e)?function(e){const t={};for(const[s,o]of f.entries(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:r,attributes:i}of e){const e=!t.has(r),_=e?s.get(r):t.get(r),a=j._resolve_refs(i,t,s,o);_.setv(a,{silent:!0}),n.set(r,{instance:_,is_new:e})}const r=[],i=new Set;function _(e){if(e instanceof a.HasProps){if(n.has(e.id)&&!i.has(e.id)){i.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of f.values(o))_(e);s&&(t.finalize(),r.push(t))}}else if(g.isArray(e))for(const t of e)_(t);else if(g.isPlainObject(e))for(const t of f.values(e))_(t)}for(const e of n.values())_(e.instance);for(const e of r)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const r={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return a.HasProps._json_record_references(o,s,n,{recursive:!0}),r}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),r=Object.keys(t.attributes),_=d.difference(n,r),a=d.difference(r,n),l=d.intersection(n,r),c=[];for(const e of _)i.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of a){const r=t.attributes[n];c.push(j._event_for_attribute_change(e,n,r,s,o))}for(const n of l){const r=e.attributes[n],i=t.attributes[n];null==r&&null==i||(null==r||null==i?c.push(j._event_for_attribute_change(e,n,i,s,o)):m.isEqual(r,i)||c.push(j._event_for_attribute_change(e,n,i,s,o)))}return c.filter(e=>null!=e)}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),r=new Map,i=[];for(const t of e.roots.root_ids)r.set(t,n.get(t)),i.push(t);const _=o(s),a=new Map,l=[];for(const e of s.roots.root_ids)a.set(e,_.get(e)),l.push(e);if(i.sort(),l.sort(),d.difference(i,l).length>0||d.difference(l,i).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=j._events_to_sync_objects(n.get(e),_.get(e),t,c);h=h.concat(s)}return{references:j._references_json(c,!1),events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=this._roots.map(e=>e.id),s=this._all_models.values();return{version:r.version,title:this._title,roots:{root_ids:t,references:j._references_json(s,e)}}}static from_json_string(e){const t=JSON.parse(e);return j.from_json(t)}static from_json(e){i.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${r.version}) / Python (${t})`;s||r.version.replace(/-(dev|rc)\\./,\"$1\")==t?i.logger.debug(o):(i.logger.warn(\"JS/Python version mismatch\"),i.logger.warn(o));const n=e.roots,_=n.root_ids,a=n.references,l=j._instantiate_references_json(a,new Map);j._initialize_references_json(a,new Map,l,new Map);const c=new j;for(const e of _){const t=l.get(e);null!=t&&c.add_root(t)}return c.set_title(e.title),c}replace_with_json(e){j.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){const t=new Set,s=[];for(const o of e){if(o.document!==this)throw i.logger.warn(\"Cannot create a patch using events from a different document, event had \",o.document,\" we are \",this),new Error(\"Cannot create a patch using events from a different document\");s.push(o.json(t))}return{events:s,references:j._references_json(t)}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,r=j._instantiate_references_json(o,this._all_models);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)r.set(t,s);else if(!r.has(t))throw i.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const _=new Map,a=new Map;for(const[e,t]of r)this._all_models.has(e)?_.set(e,t):a.set(e,t);j._initialize_references_json(o,_,a,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=j._resolve_refs(o,_,a,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const r=e.attr,i=j._resolve_refs(e.new,_,a,t);n.setv({[r]:i},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const r=j._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in r||(r[e]=n.data[e]);n.setv({data:r},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,r=e.rollover;o.stream(n,r,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof w.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=r.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=r.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(\"Unknown patch event \"+JSON.stringify(e))}}}s.Document=j,j.__name__=\"Document\"},\n", - " function _(e,r,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),t=e(8),d=e(13),i=e(14);s.overrides={};const l=new Map;s.Models=e=>{const r=s.overrides[e]||l.get(e);if(null==r)throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`);return r},s.Models.register=(e,r)=>{s.overrides[e]=r},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,r=!1,s)=>{var o;if(null!=e)for(const n of d.values(e))if(o=n,t.isObject(o)&&o.prototype instanceof i.HasProps){const e=n.__qualified__;r||!l.has(e)?l.set(e,n):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>Array.from(l.keys());const n=o.__importStar(e(34));s.register_models(n)},\n", - " function _(n,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " const e=n(9),i=Object.prototype.toString;function o(n){return\"[object Number]\"===i.call(n)}function c(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}r.isBoolean=function(n){return!0===n||!1===n||\"[object Boolean]\"===i.call(n)},r.isNumber=o,r.isInteger=function(n){return o(n)&&Number.isInteger(n)},r.isString=function(n){return\"[object String]\"===i.call(n)},r.isFunction=function(n){return\"[object Function]\"===i.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return e.every(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:i,abs:u}=Math,c=n<=t?e:-e,f=r(i(u(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=i.min(n.map(n=>n.length)),e=n.length,r=new Array(t);for(let o=0;on.length)),r=Array(e);for(let n=0;nn[t])},e.argmax=function(n){return i.max_by(a(n.length),t=>n[t])},e.sort_by=function(n,t){const e=n.map((n,e)=>({value:n,index:e,key:t(n)}));return e.sort((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value)},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);s(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!s(e,r)){for(const n of t)if(!s(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=f(t);return n.filter(n=>!s(e,n))},e.remove_at=function(n,t){const e=c(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*Math.PI;)n-=2*Math.PI;return n}function a(n,t){return e(n-t)}function o(){return Math.random()}Object.defineProperty(r,\"__esModule\",{value:!0}),r.angle_norm=e,r.angle_dist=a,r.angle_between=function(n,t,r,o){const u=a(t,r);if(0==u)return!1;if(u==2*Math.PI)return!0;const f=e(n),i=a(t,f)<=u&&a(f,r)<=u;return 0==o?i:!i},r.random=o,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(Math.PI/180)},r.degrees=function(n){return n/(Math.PI/180)},r.rnorm=function(n,t){let r,e;for(;r=o(),e=o(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let a=e/r;return a=n+t*a,a},r.clamp=function(n,t,r){return nr?r:n}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});class o extends Error{}n.AssertionError=o,o.__name__=\"AssertionError\",n.assert=function(e,r){if(!(!0===e||!1!==e&&e()))throw new o(null!=r?r:\"Assertion failed\")},n.unreachable=function(){throw new Error(\"unreachable code\")}},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(8),o=n(10);function i(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,u=new n.constructor(i);let l=0;for(;l0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return r.isArray(n)?n.slice():new n.constructor(n)},e.splice=i,e.head=u,e.insert=function(n,t,e){return i(n,e,0,t)},e.append=function(n,t){return i(n,n.length,0,t)},e.prepend=function(n,t){return i(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=u)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e,0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const c=e(9);function o(e){return Object.keys(e).length}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(e){return Object.assign({},e)},n.merge=function(e,t){const n=Object.create(Object.prototype),o=c.concat([Object.keys(e),Object.keys(t)]);for(const s of o){const o=e.hasOwnProperty(s)?e[s]:[],r=t.hasOwnProperty(s)?t[s]:[];n[s]=c.union(o,r)}return n},n.size=o,n.isEmpty=function(e){return 0==o(e)},n.to_object=function(e){const t={};for(const[n,c]of e)t[n]=c;return t}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const s=t(1),n=t(15),i=t(17),o=s.__importStar(t(18)),c=s.__importStar(t(21)),a=s.__importStar(t(28)),_=t(29),u=t(9),f=t(13),l=t(8),h=t(25),p=t(5),d=t(30),y=t(31),g=t(25),v=t(33),m=s.__importStar(t(21));class b extends(n.Signalable()){constructor(t={}){var e;super(),this._subtype=void 0,this.document=null,this.destroyed=new n.Signal0(this,\"destroyed\"),this.change=new n.Signal0(this,\"change\"),this.transformchange=new n.Signal0(this,\"transformchange\"),this.properties={},this._pending=!1,this._changing=!1;const r=t instanceof Map?t.get:e=>t[e];for(const[t,{type:e,default_value:s,options:n}]of f.entries(this._props)){let i;i=e instanceof c.Kind?new o.PrimitiveProperty(this,t,e,s,r(t),n):new e(this,t,c.Any,s,r(t),n),this.properties[t]=i}null!==(e=r(\"__deferred__\"))&&void 0!==e&&e||(this.finalize(),this.connect_signals())}set type(t){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=t}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:t,__name__:e}=this;return null!=t?`${t}.${e}`:e}static get[Symbol.toStringTag](){return this.__name__}static init_HasProps(){this.prototype._props={},this.prototype._mixins=[],this.define({id:[o.String,()=>_.uniqueId()]})}static _fix_default(t,e){if(void 0!==t){if(l.isFunction(t))return t;if(l.isArray(t))return()=>u.copy(t);if(l.isPlainObject(t))return()=>f.clone(t);if(l.isObject(t))throw new Error(t+\" must be explicitly wrapped in a function\");return()=>t}}static define(t){for(const[e,r]of f.entries(l.isFunction(t)?t(m):t)){if(null!=this.prototype._props[e])throw new Error(`attempted to redefine property '${this.prototype.type}.${e}'`);if(null!=this.prototype[e])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${e}'`);Object.defineProperty(this.prototype,e,{get(){return this.properties[e].get_value()},set(t){return this.setv({[e]:t}),this},configurable:!1,enumerable:!0});const[t,s,n]=r,i={type:t,default_value:this._fix_default(s,e),options:n},o=f.clone(this.prototype._props);o[e]=i,this.prototype._props=o}}static internal(t){const e={};for(const[r,s]of f.entries(t)){const[t,n,i={}]=s;e[r]=[t,n,Object.assign(Object.assign({},i),{internal:!0})]}this.define(e)}static mixins(t){function e(t){switch(t){case\"line\":return a.LineVector;case\"fill\":return a.FillVector;case\"hatch\":return a.HatchVector;case\"text\":return a.TextVector;default:throw new Error(`Unknown property mixin kind '${t}'`)}}function r(t,e){const r={};for(const[s,n]of f.entries(e))r[t+s]=n;return r}function s(t){const[e]=Object.keys(t),[r]=e.split(\"_\",1);return r}l.isArray(t)||(t=[t]);const n={},i=[];for(const o of t)if(l.isString(o)){const[t,s=\"\"]=o.split(\":\"),c=e(t);i.push(o),f.extend(n,r(s,c))}else if(l.isArray(o)){const[t,e]=o;i.push(`${s(e)}:${t}`),f.extend(n,r(t,e))}else{const t=o;i.push(s(t)),f.extend(n,t)}this.define(n),this.prototype._mixins=[...this.prototype._mixins,...i]}static override(t){for(const[e,r]of f.entries(t)){const t=this._fix_default(r,e),s=this.prototype._props[e];if(null==s)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${e}'`);const n=f.clone(this.prototype._props);n[e]=Object.assign(Object.assign({},s),{default_value:t}),this.prototype._props=n}}toString(){return`${this.type}(${this.id})`}property(t){const e=this.properties[t];if(null!=e)return e;throw new Error(`unknown property ${this.type}.${t}`)}get attributes(){const t={};for(const e of this)t[e.attr]=e.get_value();return t}[g.equals](t,e){for(const r of this){const s=t.property(r.attr);if(e.eq(r.get_value(),s.get_value()))return!1}return!0}[v.pretty](t){const e=t.token,r=[];for(const s of this)if(s.dirty){const n=s.get_value();r.push(`${s.attr}${e(\":\")} ${t.to_string(n)}`)}return`${this.constructor.__qualified__}${e(\"(\")}${e(\"{\")}${r.join(e(\",\")+\" \")}${e(\"}\")}${e(\")\")}`}finalize(){for(const t of this)null!=t.spec.transform&&this.connect(t.spec.transform.change,()=>this.transformchange.emit());this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){n.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return new this.constructor(this.attributes)}_setv(t,e){const r=e.check_eq,s=[],n=this._changing;this._changing=!0;for(const[e,n]of t)!1!==r&&h.isEqual(e.get_value(),n)||(e.set_value(n),s.push(e));s.length>0&&(this._pending=!0);for(const t of s)t.change.emit();if(!n){if(!e.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(t,e={}){const r=f.entries(t);if(0==r.length)return;if(!0===e.silent){for(const[t,e]of r)this.properties[t].set_value(e);return}const s=new Map,n=new Map;for(const[t,e]of r){const r=this.properties[t];s.set(r,e),n.set(r,r.get_value())}this._setv(s,e);const{document:i}=this;if(null!=i){const t=[];for(const[e,r]of n)t.push([e,r,e.get_value()]);for(const[,e,r]of t)if(this._needs_invalidate(e,r)){i._invalidate_all_models();break}this._push_changes(t,e)}}getv(t){return this.property(t).get_value()}ref(){return{id:this.id}}struct(){const t={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(t.subtype=this._subtype),t}set_subtype(t){this._subtype=t}*[Symbol.iterator](){yield*f.values(this.properties)}*syncable_properties(){for(const t of this)t.syncable&&(yield t)}serializable_attributes(){const t={};for(const e of this.syncable_properties())t[e.attr]=e.get_value();return t}static _value_to_json(t){if(t instanceof b)return t.ref();if(d.is_NDArray(t))return y.encode_NDArray(t);if(l.isArray(t)||l.isTypedArray(t)){const e=t.length,r=new Array(e);for(let s=0;sn.signal===t&&n.slot===e&&n.context===l)}const g=new Set;function a(n){0===g.size&&l.defer(f),g.add(n)}function f(){for(const n of g)s.remove_by(n,n=>null==n.signal);g.clear()}},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.delay=\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " function(n,e){return setTimeout(n,e)};const u=\"function\"==typeof requestAnimationFrame?requestAnimationFrame:setImmediate;t.defer=function(n){return new Promise(e=>{u(()=>e(n()))})},t.throttle=function(n,e,t={}){let u,o,i,r=null,l=0;const c=function(){l=!1===t.leading?0:Date.now(),r=null,i=n.apply(u,o),r||(u=o=null)};return function(){const a=Date.now();l||!1!==t.leading||(l=a);const f=e-(a-l);return u=this,o=arguments,f<=0||f>e?(r&&(clearTimeout(r),r=null),l=a,i=n.apply(u,o),r||(u=o=null)):r||!1===t.trailing||(r=setTimeout(c,f)),i}},t.once=function(n){let e,t=!1;return function(){return t||(t=!0,e=n()),e}}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(8),r=e(13);t.is_ref=function(e){if(i.isPlainObject(e)){const n=r.keys(e);return 1==n.length&&\"id\"==n[0]}return!1}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),s=e(15),i=e(19),r=a.__importStar(e(20)),l=e(24),o=e(9),c=e(12),_=e(22),u=e(8),d=e(27);function p(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function S(e){return u.isPlainObject(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}n.isSpec=S;class m{constructor(e,t,n,a,i,r={}){var l,o;let c;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=a,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=r.internal)&&void 0!==l&&l,this.optional=null!==(o=r.optional)&&void 0!==o&&o,void 0!==i)c=i,this._dirty=!0;else{const t=this._default_override();c=void 0!==t?t:void 0!==a?a(e):null}this._update(c)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){null!=e&&this.validate(e),this.spec={value:e}}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${p(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj.type}.${this.attr} given invalid value: ${p(e)}`)}valid(e){return this.kind.valid(e)}value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=m,m.__name__=\"Property\";class h extends m{}n.PrimitiveProperty=h,h.__name__=\"PrimitiveProperty\";class v extends m{}n.Any=v,v.__name__=\"Any\";class g extends m{valid(e){return u.isArray(e)||e instanceof Float32Array||e instanceof Float64Array}}n.Array=g,g.__name__=\"Array\";class x extends m{valid(e){return u.isBoolean(e)}}n.Boolean=x,x.__name__=\"Boolean\";class y extends m{valid(e){return u.isString(e)&&_.is_color(e)}}n.Color=y,y.__name__=\"Color\";class f extends m{}n.Instance=f,f.__name__=\"Instance\";class A extends m{valid(e){return u.isNumber(e)}}n.Number=A,A.__name__=\"Number\";class P extends A{valid(e){return u.isNumber(e)&&(0|e)==e}}n.Int=P,P.__name__=\"Int\";class C extends A{}n.Angle=C,C.__name__=\"Angle\";class b extends A{valid(e){return u.isNumber(e)&&0<=e&&e<=1}}n.Percent=b,b.__name__=\"Percent\";class L extends m{valid(e){return u.isString(e)}}n.String=L,L.__name__=\"String\";class N extends m{valid(e){return null===e||u.isString(e)}}n.NullString=N,N.__name__=\"NullString\";class T extends L{}n.FontSize=T,T.__name__=\"FontSize\";class q extends L{_default_override(){return d.settings.dev?\"Bokeh\":void 0}}n.Font=q,q.__name__=\"Font\";class B extends m{valid(e){return u.isString(e)&&o.includes(this.enum_values,e)}}function M(e){return class extends B{get enum_values(){return[...e]}}}n.EnumProperty=B,B.__name__=\"EnumProperty\",n.Enum=M;class w extends B{get enum_values(){return[...r.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;ne*Math.PI/180)),e=c.map(e,e=>-e),super.normalize(e)}}n.AngleSpec=re,re.__name__=\"AngleSpec\";class le extends G{get default_units(){return\"data\"}get valid_units(){return[...r.SpatialUnits]}}n.DistanceSpec=le,le.__name__=\"DistanceSpec\";class oe extends J{array(e){return new Uint8Array(super.array(e))}}n.BooleanSpec=oe,oe.__name__=\"BooleanSpec\";class ce extends J{array(e){return new l.NumberArray(super.array(e))}}n.NumberSpec=ce,ce.__name__=\"NumberSpec\";class _e extends J{array(e){const t=super.array(e),n=t.length,a=new l.ColorArray(n);for(let e=0;e0){let o=s[e];return null==o&&(s[e]=o=new r(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof g)this._log_level=e;else{if(!n.isString(e)||null==r.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=r.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of t.entries(r.log_levels))o.level\",\"*\"),t.HTTPMethod=o.Enum(\"POST\",\"GET\"),t.HexTileOrientation=o.Enum(\"pointytop\",\"flattop\"),t.HoverMode=o.Enum(\"mouse\",\"hline\",\"vline\"),t.LatLon=o.Enum(\"lat\",\"lon\"),t.LegendClickPolicy=o.Enum(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=o.Enum(\"butt\",\"round\",\"square\"),t.LineJoin=o.Enum(\"miter\",\"round\",\"bevel\"),t.LinePolicy=o.Enum(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.Logo=o.Enum(\"normal\",\"grey\"),t.MarkerType=o.Enum(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=o.Enum(\"show\",\"ignore\"),t.Orientation=o.Enum(\"vertical\",\"horizontal\"),t.OutputBackend=o.Enum(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=o.Enum(\"percent\",\"absolute\"),t.Place=o.Enum(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=o.Enum(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=o.Enum(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=o.Enum(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=o.Enum(\"canvas\",\"css\"),t.ResetPolicy=o.Enum(\"standard\",\"event_only\"),t.RoundingFunction=o.Enum(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=o.Enum(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=o.Enum(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=o.Enum(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=o.Enum(\"ascending\",\"descending\"),t.SpatialUnits=o.Enum(\"screen\",\"data\"),t.StartEnd=o.Enum(\"start\",\"end\"),t.StepMode=o.Enum(\"after\",\"before\",\"center\"),t.TapBehavior=o.Enum(\"select\",\"inspect\"),t.TextAlign=o.Enum(\"left\",\"right\",\"center\"),t.TextBaseline=o.Enum(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=o.Enum(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=o.Enum(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=o.Enum(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=o.Enum(\"replace\",\"append\"),t.VerticalAlign=o.Enum(\"top\",\"middle\",\"bottom\")},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1).__importStar(e(8)),r=e(22);class i{}t.Kind=i,i.__name__=\"Kind\",function(e){class n extends i{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends i{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class l extends i{valid(e){return s.isBoolean(e)}}l.__name__=\"Boolean\",e.Boolean=l;class a extends i{constructor(e){super(),this.obj_type=e}valid(e){return!0}}a.__name__=\"Ref\",e.Ref=a;class _ extends i{valid(e){return s.isNumber(e)}}_.__name__=\"Number\",e.Number=_;class u extends _{valid(e){return super.valid(e)&&s.isInteger(e)}}u.__name__=\"Int\",e.Int=u;class d extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some(n=>n.valid(e))}}d.__name__=\"Or\",e.Or=d;class o extends i{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!s.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e))}}c.__name__=\"Array\",e.Array=c;class m extends i{valid(e){return null===e}}m.__name__=\"Null\",e.Null=m;class p extends i{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}p.__name__=\"Nullable\",e.Nullable=p;class y extends i{valid(e){return s.isString(e)}}y.__name__=\"String\",e.String=y;class v extends i{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}v.__name__=\"Enum\",e.Enum=v;class h extends i{constructor(e){super(),this.item_type=e}valid(e){if(!s.isPlainObject(e))return!1;for(const n in e)if(e.hasOwnProperty(n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}h.__name__=\"Struct\",e.Struct=h;class w extends i{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof Map))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}w.__name__=\"Dict\",e.Dict=w;class K extends i{valid(e){return s.isString(e)&&r.is_color(e)}}K.__name__=\"Color\",e.Color=K;class f extends _{valid(e){return super.valid(e)&&0<=e&&e<=1}}f.__name__=\"Percent\",e.Percent=f}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null,t.Nullable=e=>new t.Kinds.Nullable(e),t.Or=(...e)=>new t.Kinds.Or(e),t.Tuple=(...e)=>new t.Kinds.Tuple(e),t.Array=e=>new t.Kinds.Array(e),t.Struct=e=>new t.Kinds.Struct(e),t.Dict=(e,n)=>new t.Kinds.Dict(e,n),t.Enum=(...e)=>new t.Kinds.Enum(e),t.Ref=e=>new t.Kinds.Ref(e),t.Percent=new t.Kinds.Percent,t.Color=new t.Kinds.Color,t.Auto=t.Enum(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(23),l=e(9);function a(e){const r=Number(e).toString(16);return 1==r.length?\"0\"+r:r}function o(e){if(0==(e+=\"\").indexOf(\"#\"))return e;if(n.is_svg_color(e))return n.svg_colors[e];if(0==e.indexOf(\"rgb\")){const r=e.replace(/^rgba?\\(|\\s+|\\)$/g,\"\").split(\",\");let t=r.slice(0,3).map(a).join(\"\");return 4==r.length&&(t+=a(Math.floor(255*parseFloat(r[3])))),\"#\"+t.slice(0,8)}return e}function s(e){let r;switch(e.substring(0,4)){case\"rgba\":r={start:\"rgba(\",len:4,alpha:!0};break;case\"rgb(\":r={start:\"rgb(\",len:3,alpha:!1};break;default:return!1}if(new RegExp(\".*?(\\\\.).*(,)\").test(e))return!1;const t=e.replace(r.start,\"\").replace(\")\",\"\").split(\",\").map(parseFloat);return t.length==r.len&&((!r.alpha||0<=t[3]&&t[3]<=1)&&!l.includes(t.slice(0,3).map(e=>0<=e&&e<=255),!1))}t.is_color=function(e){return n.is_svg_color(e.toLowerCase())||\"#\"==e.substring(0,1)||s(e)},t.rgb2hex=function(e,r,t){return`#${a(255&e)}${a(255&r)}${a(255&t)}`},t.color2hex=o,t.encode_rgba=function([e,r,t,n]){return(255*e|0)<<24|(255*r|0)<<16|(255*t|0)<<8|255*n|0},t.decode_rgba=function(e){return[(e>>24&255)/255,(e>>16&255)/255,(e>>8&255)/255,(e>>0&255)/255]},t.color2rgba=function(e,r=1){if(!e)return[0,0,0,0];let t=o(e);t=t.replace(/ |#/g,\"\"),t.length<=4&&(t=t.replace(/(.)/g,\"$1$1\"));const n=t.match(/../g).map(e=>parseInt(e,16)/255);for(;n.length<3;)n.push(0);return n.length<4&&n.push(r),n.slice(0,4)},t.valid_rgb=s},\n", - " function _(e,F,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.svg_colors={indianred:\"#CD5C5C\",lightcoral:\"#F08080\",salmon:\"#FA8072\",darksalmon:\"#E9967A\",lightsalmon:\"#FFA07A\",crimson:\"#DC143C\",red:\"#FF0000\",firebrick:\"#B22222\",darkred:\"#8B0000\",pink:\"#FFC0CB\",lightpink:\"#FFB6C1\",hotpink:\"#FF69B4\",deeppink:\"#FF1493\",mediumvioletred:\"#C71585\",palevioletred:\"#DB7093\",coral:\"#FF7F50\",tomato:\"#FF6347\",orangered:\"#FF4500\",darkorange:\"#FF8C00\",orange:\"#FFA500\",gold:\"#FFD700\",yellow:\"#FFFF00\",lightyellow:\"#FFFFE0\",lemonchiffon:\"#FFFACD\",lightgoldenrodyellow:\"#FAFAD2\",papayawhip:\"#FFEFD5\",moccasin:\"#FFE4B5\",peachpuff:\"#FFDAB9\",palegoldenrod:\"#EEE8AA\",khaki:\"#F0E68C\",darkkhaki:\"#BDB76B\",lavender:\"#E6E6FA\",thistle:\"#D8BFD8\",plum:\"#DDA0DD\",violet:\"#EE82EE\",orchid:\"#DA70D6\",fuchsia:\"#FF00FF\",magenta:\"#FF00FF\",mediumorchid:\"#BA55D3\",mediumpurple:\"#9370DB\",blueviolet:\"#8A2BE2\",darkviolet:\"#9400D3\",darkorchid:\"#9932CC\",darkmagenta:\"#8B008B\",purple:\"#800080\",indigo:\"#4B0082\",slateblue:\"#6A5ACD\",darkslateblue:\"#483D8B\",mediumslateblue:\"#7B68EE\",greenyellow:\"#ADFF2F\",chartreuse:\"#7FFF00\",lawngreen:\"#7CFC00\",lime:\"#00FF00\",limegreen:\"#32CD32\",palegreen:\"#98FB98\",lightgreen:\"#90EE90\",mediumspringgreen:\"#00FA9A\",springgreen:\"#00FF7F\",mediumseagreen:\"#3CB371\",seagreen:\"#2E8B57\",forestgreen:\"#228B22\",green:\"#008000\",darkgreen:\"#006400\",yellowgreen:\"#9ACD32\",olivedrab:\"#6B8E23\",olive:\"#808000\",darkolivegreen:\"#556B2F\",mediumaquamarine:\"#66CDAA\",darkseagreen:\"#8FBC8F\",lightseagreen:\"#20B2AA\",darkcyan:\"#008B8B\",teal:\"#008080\",aqua:\"#00FFFF\",cyan:\"#00FFFF\",lightcyan:\"#E0FFFF\",paleturquoise:\"#AFEEEE\",aquamarine:\"#7FFFD4\",turquoise:\"#40E0D0\",mediumturquoise:\"#48D1CC\",darkturquoise:\"#00CED1\",cadetblue:\"#5F9EA0\",steelblue:\"#4682B4\",lightsteelblue:\"#B0C4DE\",powderblue:\"#B0E0E6\",lightblue:\"#ADD8E6\",skyblue:\"#87CEEB\",lightskyblue:\"#87CEFA\",deepskyblue:\"#00BFFF\",dodgerblue:\"#1E90FF\",cornflowerblue:\"#6495ED\",royalblue:\"#4169E1\",blue:\"#0000FF\",mediumblue:\"#0000CD\",darkblue:\"#00008B\",navy:\"#000080\",midnightblue:\"#191970\",cornsilk:\"#FFF8DC\",blanchedalmond:\"#FFEBCD\",bisque:\"#FFE4C4\",navajowhite:\"#FFDEAD\",wheat:\"#F5DEB3\",burlywood:\"#DEB887\",tan:\"#D2B48C\",rosybrown:\"#BC8F8F\",sandybrown:\"#F4A460\",goldenrod:\"#DAA520\",darkgoldenrod:\"#B8860B\",peru:\"#CD853F\",chocolate:\"#D2691E\",saddlebrown:\"#8B4513\",sienna:\"#A0522D\",brown:\"#A52A2A\",maroon:\"#800000\",white:\"#FFFFFF\",snow:\"#FFFAFA\",honeydew:\"#F0FFF0\",mintcream:\"#F5FFFA\",azure:\"#F0FFFF\",aliceblue:\"#F0F8FF\",ghostwhite:\"#F8F8FF\",whitesmoke:\"#F5F5F5\",seashell:\"#FFF5EE\",beige:\"#F5F5DC\",oldlace:\"#FDF5E6\",floralwhite:\"#FFFAF0\",ivory:\"#FFFFF0\",antiquewhite:\"#FAEBD7\",linen:\"#FAF0E6\",lavenderblush:\"#FFF0F5\",mistyrose:\"#FFE4E1\",gainsboro:\"#DCDCDC\",lightgray:\"#D3D3D3\",lightgrey:\"#D3D3D3\",silver:\"#C0C0C0\",darkgray:\"#A9A9A9\",darkgrey:\"#A9A9A9\",gray:\"#808080\",grey:\"#808080\",dimgray:\"#696969\",dimgrey:\"#696969\",lightslategray:\"#778899\",lightslategrey:\"#778899\",slategray:\"#708090\",slategrey:\"#708090\",darkslategray:\"#2F4F4F\",darkslategrey:\"#2F4F4F\",black:\"#000000\"},r.is_svg_color=function(e){return e in r.svg_colors}},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.NumberArray=Float32Array,e.ColorArray=Uint32Array;const s=r(25);class a{constructor(r,t){this.offsets=r,this.array=t}[s.equals](r,t){return t.arrays(this.offsets,r.offsets)&&t.arrays(this.array,r.array)}get length(){return this.offsets.length}clone(){return new a(new Uint32Array(this.offsets),new e.NumberArray(this.array))}static from(r){const t=r.length,s=new Uint32Array(t);let n=0;for(let e=0;e{if(null!=t[r.equals]&&null!=e[r.equals])return t[r.equals](e,this);switch(s){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(\"\"+t,\"\"+e)}if(t instanceof Node)return this.nodes(t,e);throw Error(\"can't compare objects of type \"+s)})();return o.pop(),c.pop(),i}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){e.assert(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;st(this.at(s,r),s,r))}apply(t){const s=a.from(t),{nrows:r,ncols:e}=this;if(r==s.nrows&&e==s.ncols)return new a(r,e,(t,r)=>s.at(t,r)(this.at(t,r),t,r));throw new Error(\"dimensions don't match\")}to_sparse(){return[...this]}static from(t,s){if(t instanceof a)return t;if(null!=s){const r=t,e=Math.floor(r.length/s);return new a(e,s,(t,e)=>r[t*s+e])}{const s=t,r=t.length,e=i.min(s.map(t=>t.length));return new a(r,e,(t,r)=>s[t][r])}}}r.Matrix=a,a.__name__=\"Matrix\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(){this._dev=!1}set dev(e){this._dev=e}get dev(){return this._dev}}s.Settings=n,n.__name__=\"Settings\",s.settings=new n},\n", - " function _(e,l,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(1).__importStar(e(18));t.Line={line_color:[a.Color,\"black\"],line_alpha:[a.Number,1],line_width:[a.Number,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.Fill={fill_color:[a.Color,\"gray\"],fill_alpha:[a.Number,1]},t.Hatch={hatch_color:[a.Color,\"black\"],hatch_alpha:[a.Number,1],hatch_scale:[a.Number,12],hatch_pattern:[a.NullString,null],hatch_weight:[a.Number,1],hatch_extra:[a.Any,{}]},t.Text={text_color:[a.Color,\"#444444\"],text_alpha:[a.Number,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSize,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]},t.LineScalar={line_color:[a.ColorScalar,\"black\"],line_alpha:[a.NumberScalar,1],line_width:[a.NumberScalar,1],line_join:[a.LineJoinScalar,\"bevel\"],line_cap:[a.LineCapScalar,\"butt\"],line_dash:[a.ArrayScalar,[]],line_dash_offset:[a.NumberScalar,0]},t.FillScalar={fill_color:[a.ColorScalar,\"gray\"],fill_alpha:[a.NumberScalar,1]},t.HatchScalar={hatch_color:[a.ColorScalar,\"black\"],hatch_alpha:[a.NumberScalar,1],hatch_scale:[a.NumberScalar,12],hatch_pattern:[a.NullStringScalar,null],hatch_weight:[a.NumberScalar,1],hatch_extra:[a.AnyScalar,{}]},t.TextScalar={text_color:[a.ColorScalar,\"#444444\"],text_alpha:[a.NumberScalar,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeScalar,\"16px\"],text_font_style:[a.FontStyleScalar,\"normal\"],text_align:[a.TextAlignScalar,\"left\"],text_baseline:[a.TextBaselineScalar,\"bottom\"],text_line_height:[a.NumberScalar,1.2]},t.LineVector={line_color:[a.ColorSpec,\"black\"],line_alpha:[a.NumberSpec,1],line_width:[a.NumberSpec,1],line_join:[a.LineJoin,\"bevel\"],line_cap:[a.LineCap,\"butt\"],line_dash:[a.Array,[]],line_dash_offset:[a.Number,0]},t.FillVector={fill_color:[a.ColorSpec,\"gray\"],fill_alpha:[a.NumberSpec,1]},t.HatchVector={hatch_color:[a.ColorSpec,\"black\"],hatch_alpha:[a.NumberSpec,1],hatch_scale:[a.NumberSpec,12],hatch_pattern:[a.NullStringSpec,null],hatch_weight:[a.NumberSpec,1],hatch_extra:[a.Any,{}]},t.TextVector={text_color:[a.ColorSpec,\"#444444\"],text_alpha:[a.NumberSpec,1],text_font:[a.Font,\"helvetica\"],text_font_size:[a.FontSizeSpec,\"16px\"],text_font_style:[a.FontStyle,\"normal\"],text_align:[a.TextAlign,\"left\"],text_baseline:[a.TextBaseline,\"bottom\"],text_line_height:[a.Number,1.2]}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(27);function u(){const t=new Array(32);for(let e=0;e<32;e++)t[e]=\"0123456789ABCDEF\".substr(Math.floor(16*Math.random()),1);return t[12]=\"4\",t[16]=\"0123456789ABCDEF\".substr(3&t[16].charCodeAt(0)|8,1),t.join(\"\")}r.startsWith=function(t,e,r=0){return t.substr(r,e.length)==e},r.uuid4=u;let s=1e3;r.uniqueId=function(t){const e=n.settings.dev?\"j\"+s++:u();return null!=t?`${t}-${e}`:e},r.escape=function(t){return t.replace(/(?:[&<>\"'`])/g,t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}})},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,(t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}})},r.use_strict=function(t){return\"'use strict';\\n\"+t}},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(8),a=t(11),n=t(25),i=Symbol(\"__ndarray__\");class h extends Uint8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint8NDArray=h,h.__name__=\"Uint8NDArray\";class _ extends Int8Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int8\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int8NDArray=_,_.__name__=\"Int8NDArray\";class u extends Uint16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint16NDArray=u,u.__name__=\"Uint16NDArray\";class l extends Int16Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int16\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int16NDArray=l,l.__name__=\"Int16NDArray\";class y extends Uint32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"uint32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Uint32NDArray=y,y.__name__=\"Uint32NDArray\";class c extends Int32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"int32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Int32NDArray=c,c.__name__=\"Int32NDArray\";class p extends Float32Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float32\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}e.Float32NDArray=p,p.__name__=\"Float32NDArray\";class o extends Float64Array{constructor(t,s){super(t),this.__ndarray__=i,this.dtype=\"float64\",this.shape=null!=s?s:d(t)?t.shape:[this.length],this.dimension=this.shape.length}[n.equals](t,s){return s.eq(this.shape,t.shape)&&s.arrays(this,t)}}function d(t){return r.isObject(t)&&t.__ndarray__==i}e.Float64NDArray=o,o.__name__=\"Float64NDArray\",e.is_NDArray=d,e.ndarray=function(t,s={}){let{dtype:e}=s;null==e&&(e=t instanceof ArrayBuffer||r.isArray(t)?\"float32\":(()=>{switch(!0){case t instanceof Uint8Array:return\"uint8\";case t instanceof Int8Array:return\"int8\";case t instanceof Uint16Array:return\"uint16\";case t instanceof Int16Array:return\"int16\";case t instanceof Uint32Array:return\"uint32\";case t instanceof Int32Array:return\"int32\";case t instanceof Float32Array:return\"float32\";case t instanceof Float64Array:return\"float64\";default:a.unreachable()}})());const{shape:n}=s;switch(e){case\"uint8\":return new h(t,n);case\"int8\":return new _(t,n);case\"uint16\":return new u(t,n);case\"int16\":return new l(t,n);case\"uint32\":return new y(t,n);case\"int32\":return new c(t,n);case\"float32\":return new p(t,n);case\"float64\":return new o(t,n)}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(8),f=e(32),_=n.__importStar(e(30));function o(e){const r=new Uint8Array(e),t=Array.from(r).map(e=>String.fromCharCode(e));return btoa(t.join(\"\"))}function s(e){const r=atob(e),t=r.length,n=new Uint8Array(t);for(let e=0,a=t;e{switch(a){case\"uint8\":return new _.Uint8NDArray(o,n);case\"int8\":return new _.Int8NDArray(o,n);case\"uint16\":return new _.Uint16NDArray(o,n);case\"int16\":return new _.Int16NDArray(o,n);case\"uint32\":return new _.Uint32NDArray(o,n);case\"int32\":return new _.Int32NDArray(o,n);case\"float32\":return new _.Float32NDArray(o,n);case\"float64\":return new _.Float64NDArray(o,n)}})();if(f!==t.BYTE_ORDER)switch(l.BYTES_PER_ELEMENT){case 2:i(l);break;case 4:u(l);break;case 8:c(l)}return l},t.encode_NDArray=function(e,r){const n={order:t.BYTE_ORDER,dtype:e.dtype,shape:e.shape};if(null!=r){const t=\"\"+r.size;return r.set(t,e.buffer),Object.assign({__buffer__:t},n)}{const r=o(e.buffer);return Object.assign({__ndarray__:r},n)}}},\n", - " function _(e,n,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.is_ie=(()=>{const e=\"undefined\"!=typeof navigator?navigator.userAgent:\"\";return e.indexOf(\"MSIE\")>=0||e.indexOf(\"Trident\")>0||e.indexOf(\"Edge\")>0})(),i.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),i.is_little_endian=(()=>{const e=new ArrayBuffer(4),n=new Uint8Array(e);new Uint32Array(e)[1]=168496141;let i=!0;return 10==n[4]&&11==n[5]&&12==n[6]&&13==n[7]&&(i=!1),i})()},\n", - " function _(t,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(8),i=t(13);n.pretty=Symbol(\"pretty\");class o{constructor(t){this.precision=null==t?void 0:t.precision}to_string(t){return function(t){return n.pretty in Object(t)}(t)?t[n.pretty](this):e.isBoolean(t)?this.boolean(t):e.isNumber(t)?this.number(t):e.isString(t)?this.string(t):e.isArray(t)?this.array(t):e.isIterable(t)?this.iterable(t):e.isPlainObject(t)?this.object(t):\"\"+t}token(t){return t}boolean(t){return\"\"+t}number(t){return null!=this.precision?t.toFixed(this.precision):\"\"+t}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}array(t){const r=this.token,n=[];for(const r of t)n.push(this.to_string(r));return`${r(\"[\")}${n.join(r(\",\")+\" \")}${r(\"]\")}`}iterable(t){var r;const n=this.token,e=null!==(r=Object(t)[Symbol.toStringTag])&&void 0!==r?r:\"Object\",i=this.array(t);return`${e}${n(\"(\")}${i}${n(\")\")}`}object(t){const r=this.token,n=[];for(const[e,o]of i.entries(t))n.push(`${e}${r(\":\")} ${this.to_string(o)}`);return`${r(\"{\")}${n.join(r(\",\")+\" \")}${r(\"}\")}`}}n.Printer=o,o.__name__=\"Printer\",n.to_string=function(t,r){return new o(r).to_string(t)}},\n", - " function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(35),r),e.__exportStar(t(176),r),e.__exportStar(t(203),r),e.__exportStar(t(207),r),e.__exportStar(t(218),r),e.__exportStar(t(222),r),e.__exportStar(t(228),r),e.__exportStar(t(232),r),e.__exportStar(t(265),r),e.__exportStar(t(268),r),e.__exportStar(t(270),r),e.__exportStar(t(132),r),e.__exportStar(t(148),r),e.__exportStar(t(287),r),e.__exportStar(t(291),r),e.__exportStar(t(320),r),e.__exportStar(t(321),r),e.__exportStar(t(322),r),e.__exportStar(t(323),r),e.__exportStar(t(324),r),e.__exportStar(t(329),r),e.__exportStar(t(331),r),e.__exportStar(t(342),r),e.__exportStar(t(346),r)},\n", - " function _(a,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});var r=a(36);o.Annotation=r.Annotation;var n=a(83);o.Arrow=n.Arrow;var t=a(84);o.ArrowHead=t.ArrowHead;var v=a(84);o.OpenHead=v.OpenHead;var l=a(84);o.NormalHead=l.NormalHead;var d=a(84);o.TeeHead=d.TeeHead;var i=a(84);o.VeeHead=i.VeeHead;var A=a(122);o.Band=A.Band;var H=a(124);o.BoxAnnotation=H.BoxAnnotation;var T=a(125);o.ColorBar=T.ColorBar;var p=a(160);o.Label=p.Label;var L=a(162);o.LabelSet=L.LabelSet;var b=a(163);o.Legend=b.Legend;var B=a(164);o.LegendItem=B.LegendItem;var S=a(166);o.PolyAnnotation=S.PolyAnnotation;var P=a(167);o.Slope=P.Slope;var g=a(168);o.Span=g.Span;var m=a(161);o.TextAnnotation=m.TextAnnotation;var w=a(169);o.Title=w.Title;var x=a(170);o.ToolbarPanel=x.ToolbarPanel;var s=a(171);o.Tooltip=s.Tooltip;var u=a(175);o.Whisker=u.Whisker},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1).__importStar(t(37)),i=t(13),o=t(70);class _ extends o.RendererView{get panel(){return this.layout}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.visible,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible){const{width:t,height:e}=this._get_size();return{width:Math.round(t),height:Math.round(e)}}return{width:0,height:0}}_get_size(){throw new Error(\"not implemented\")}set_data(t){const e=this.model.materialize_dataspecs(t);if(i.extend(this,e),this.plot_model.use_map){const t=this;null!=t._x&&([t._x,t._y]=s.project_xy(t._x,t._y)),null!=t._xs&&([t._xs,t._ys]=s.project_xsys(t._xs,t._ys))}}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}n.AnnotationView=_,_.__name__=\"AnnotationView\";class a extends o.Renderer{constructor(t){super(t)}static init_Annotation(){this.override({level:\"annotation\"})}}n.Annotation=a,a.__name__=\"Annotation\",a.init_Annotation()},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=n(1),o=r.__importDefault(n(38)),l=r.__importDefault(n(39)),c=n(24),i=new l.default(\"GOOGLE\"),u=new l.default(\"WGS84\"),a=o.default(u,i);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?a.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?a.inverse([n,t]):[NaN,NaN]};const s={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},f={lon:[-180,180],lat:[-85.06,85.06]},{min:_,max:p}=Math;function m(n,t){const r=_(n.length,t.length),o=new c.NumberArray(r),l=new c.NumberArray(r);return e.inplace.project_xy(n,t,o,l),[o,l]}e.clip_mercator=function(n,t,e){const[r,o]=s[e];return[p(n,r),_(t,o)]},e.in_bounds=function(n,t){const[e,r]=f[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof r.z?[r.x,r.y,r.z].concat(t.splice(3)):[r.x,r.y,t[2]].concat(t.splice(3)):[r.x,r.y].concat(t.splice(2)):[r.x,r.y]):(o=a.default(e,n,t),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;o[r]=t[r]})),o)}function u(e){return e instanceof o.default?e:e.oProj?e.oProj:o.default(e)}t.default=function(e,n,t){e=u(e);var r,o=!1;return void 0===n?(n=e,e=i,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=i,o=!0),n=u(n),t?c(e,n,t):(r={forward:function(t){return c(e,n,t)},inverse:function(t){return c(n,e,t)}},o&&(r.oProj=n),r)}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const s=e(1),i=s.__importDefault(e(40)),u=s.__importDefault(e(51)),l=s.__importDefault(e(52)),o=e(60),r=s.__importDefault(e(62)),f=s.__importDefault(e(63)),d=s.__importDefault(e(47));function p(e,t){if(!(this instanceof p))return new p(e);t=t||function(e){if(e)throw e};var a=i.default(e);if(\"object\"==typeof a){var s=p.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var l=d.default(r.default,a.datumCode);l&&(a.datum_params=l.towgs84?l.towgs84.split(\",\"):null,a.ellps=l.ellipse,a.datumName=l.datumName?l.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\";var m=o.sphere(a.a,a.b,a.rf,a.ellps,a.sphere),n=o.eccentricity(m.a,m.b,m.rf,a.R_A),h=a.datum||f.default(a.datumCode,a.datum_params,m.a,m.b,n.es,n.ep2);u.default(this,a),u.default(this,s),this.a=m.a,this.b=m.b,this.rf=m.rf,this.sphere=m.sphere,this.es=n.es,this.e=n.e,this.ep2=n.ep2,this.datum=h,this.init(),t(null,this)}else t(e)}else t(e)}p.projections=l.default,p.projections.start(),a.default=p},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const u=t(1),n=u.__importDefault(t(41)),f=u.__importDefault(t(48)),i=u.__importDefault(t(43)),a=u.__importDefault(t(47));var o=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var l=[\"3857\",\"900913\",\"3785\",\"102113\"];r.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in n.default}(t))return n.default[t];if(function(t){return o.some((function(e){return t.indexOf(e)>-1}))}(t)){var e=f.default(t);if(function(t){var e=a.default(t,\"authority\");if(e){var r=a.default(e,\"epsg\");return r&&l.indexOf(r)>-1}}(e))return n.default[\"EPSG:3857\"];var r=function(t){var e=a.default(t,\"extension\");if(e)return a.default(e,\"proj4\")}(e);return r?i.default(r):e}return function(t){return\"+\"===t[0]}(t)?i.default(t):void 0}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),n=i.__importDefault(t(42)),f=i.__importDefault(t(43)),a=i.__importDefault(t(48));function l(t){var e=this;if(2===arguments.length){var r=arguments[1];\"string\"==typeof r?\"+\"===r.charAt(0)?l[t]=f.default(arguments[1]):l[t]=a.default(arguments[1]):l[t]=r}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?l.apply(e,t):l(t)}));if(\"string\"==typeof t){if(t in l)return l[t]}else\"EPSG\"in t?l[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?l[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?l[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}n.default(l),r.default=l},\n", - " function _(e,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.default=function(e){e(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),e(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),e(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),e.WGS84=e[\"EPSG:4326\"],e[\"EPSG:3785\"]=e[\"EPSG:3857\"],e.GOOGLE=e[\"EPSG:3857\"],e[\"EPSG:900913\"]=e[\"EPSG:3857\"],e[\"EPSG:102113\"]=e[\"EPSG:3857\"]}},\n", - " function _(t,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),a=t(44),u=e.__importDefault(t(45)),r=e.__importDefault(t(46)),i=e.__importDefault(t(47));o.default=function(t){var n,o,e,f={},l=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){f.rf=parseFloat(t)},lat_0:function(t){f.lat0=t*a.D2R},lat_1:function(t){f.lat1=t*a.D2R},lat_2:function(t){f.lat2=t*a.D2R},lat_ts:function(t){f.lat_ts=t*a.D2R},lon_0:function(t){f.long0=t*a.D2R},lon_1:function(t){f.long1=t*a.D2R},lon_2:function(t){f.long2=t*a.D2R},alpha:function(t){f.alpha=parseFloat(t)*a.D2R},lonc:function(t){f.longc=t*a.D2R},x_0:function(t){f.x0=parseFloat(t)},y_0:function(t){f.y0=parseFloat(t)},k_0:function(t){f.k0=parseFloat(t)},k:function(t){f.k0=parseFloat(t)},a:function(t){f.a=parseFloat(t)},b:function(t){f.b=parseFloat(t)},r_a:function(){f.R_A=!0},zone:function(t){f.zone=parseInt(t,10)},south:function(){f.utmSouth=!0},towgs84:function(t){f.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){f.to_meter=parseFloat(t)},units:function(t){f.units=t;var n=i.default(r.default,t);n&&(f.to_meter=n.to_meter)},from_greenwich:function(t){f.from_greenwich=t*a.D2R},pm:function(t){var n=i.default(u.default,t);f.from_greenwich=(n||parseFloat(t))*a.D2R},nadgrids:function(t){\"@null\"===t?f.datumCode=\"none\":f.nadgrids=t},axis:function(t){3===t.length&&-1!==\"ewnsud\".indexOf(t.substr(0,1))&&-1!==\"ewnsud\".indexOf(t.substr(1,1))&&-1!==\"ewnsud\".indexOf(t.substr(2,1))&&(f.axis=t)}};for(n in l)o=l[n],n in c?\"function\"==typeof(e=c[n])?e(o):f[e]=o:f[n]=o;return\"string\"==typeof f.datumCode&&\"WGS84\"!==f.datumCode&&(f.datumCode=f.datumCode.toLowerCase()),f}},\n", - " function _(P,_,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.PJD_3PARAM=1,e.PJD_7PARAM=2,e.PJD_WGS84=4,e.PJD_NODATUM=5,e.SEC_TO_RAD=484813681109536e-20,e.HALF_PI=Math.PI/2,e.SIXTH=.16666666666666666,e.RA4=.04722222222222222,e.RA6=.022156084656084655,e.EPSLN=1e-10,e.D2R=.017453292519943295,e.R2D=57.29577951308232,e.FORTPI=Math.PI/4,e.TWO_PI=2*Math.PI,e.SPI=3.14159265359},\n", - " function _(e,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});var a={};r.default=a,a.greenwich=0,a.lisbon=-9.131906111111,a.paris=2.337229166667,a.bogota=-74.080916666667,a.madrid=-3.687938888889,a.rome=12.452333333333,a.bern=7.439583333333,a.jakarta=106.807719444444,a.ferro=-17.666666666667,a.brussels=4.367975,a.stockholm=18.058277777778,a.athens=23.7163375,a.oslo=10.722916666667},\n", - " function _(e,t,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(l),l}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0}),r.default=function(t){return new a(t).output()};var i=/\\s/,s=/[A-Za-z]/,h=/[A-Za-z84]/,o=/[,\\]]/,n=/[\\d\\.E\\-\\+]/;function a(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}a.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;i.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},a.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(o.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},a.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},a.prototype.number=function(t){if(!n.test(t)){if(o.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},a.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},a.prototype.keyword=function(t){if(h.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},a.prototype.neutral=function(t){if(s.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(n.test(t))return this.word=t,void(this.state=3);if(!o.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},a.prototype.output=function(){for(;this.place90&&a*l.R2D<-90&&h*l.R2D>180&&h*l.R2D<-180)return null;if(Math.abs(Math.abs(a)-l.HALF_PI)<=l.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(l.FORTPI+.5*a));else{var n=Math.sin(a),u=r.default(this.e,a,n);i=this.x0+this.a*this.k0*e.default(h-this.long0),s=this.y0-this.a*this.k0*Math.log(u)}return t.x=i,t.y=s,t}function f(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=l.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var r=Math.exp(-a/(this.a*this.k0));if(-9999===(s=n.default(this.e,r)))return null}return i=e.default(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=u,s.forward=o,s.inverse=f,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:u,forward:o,inverse:f,names:s.names}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e,t,n){var r=e*t;return n/Math.sqrt(1-r*r)}},\n", - " function _(e,t,u){Object.defineProperty(u,\"__esModule\",{value:!0});const n=e(1),a=e(44),f=n.__importDefault(e(56));u.default=function(e){return Math.abs(e)<=a.SPI?e:e-f.default(e)*a.TWO_PI}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){return e<0?-1:1}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=t(44);n.default=function(t,e,n){var o=t*n,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(a.HALF_PI-e))/o}},\n", - " function _(t,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(44);e.default=function(t,a){for(var e,r,o=.5*t,u=n.HALF_PI-2*Math.atan(a),f=0;f<=15;f++)if(e=t*Math.sin(u),u+=r=n.HALF_PI-2*Math.atan(a*Math.pow((1-e)/(1+e),o))-u,Math.abs(r)<=1e-10)return u;return-9999}},\n", - " function _(e,n,i){function t(){}function r(e){return e}Object.defineProperty(i,\"__esModule\",{value:!0}),i.init=t,i.forward=r,i.inverse=r,i.names=[\"longlat\",\"identity\"],i.default={init:t,forward:r,inverse:r,names:i.names}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const a=e(1),n=e(44),f=a.__importStar(e(61)),u=a.__importDefault(e(47));r.eccentricity=function(e,t,r,a){var f=e*e,u=t*t,i=(f-u)/f,c=0;return a?(f=(e*=1-i*(n.SIXTH+i*(n.RA4+i*n.RA6)))*e,i=0):c=Math.sqrt(i),{es:i,e:c,ep2:(f-u)/u}},r.sphere=function(e,t,r,a,i){if(!e){var c=u.default(f.default,a);c||(c=f.WGS84),e=c.a,t=c.b,r=c.rf}return r&&!t&&(t=(1-1/r)*e),(0===r||Math.abs(e-t)3&&(0===r.datum_params[3]&&0===r.datum_params[4]&&0===r.datum_params[5]&&0===r.datum_params[6]||(r.datum_type=t.PJD_7PARAM,r.datum_params[3]*=t.SEC_TO_RAD,r.datum_params[4]*=t.SEC_TO_RAD,r.datum_params[5]*=t.SEC_TO_RAD,r.datum_params[6]=r.datum_params[6]/1e6+1))),r.a=_,r.b=u,r.es=d,r.ep2=p,r}},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),u=t(44),m=r.__importDefault(t(65)),_=r.__importDefault(t(67)),o=r.__importDefault(t(39)),d=r.__importDefault(t(68)),f=r.__importDefault(t(69));a.default=function t(e,a,r){var n;if(Array.isArray(r)&&(r=d.default(r)),f.default(r),e.datum&&a.datum&&function(t,e){return(t.datum.datum_type===u.PJD_3PARAM||t.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==e.datumCode||(e.datum.datum_type===u.PJD_3PARAM||e.datum.datum_type===u.PJD_7PARAM)&&\"WGS84\"!==t.datumCode}(e,a)&&(r=t(e,n=new o.default(\"WGS84\"),r),e=n),\"enu\"!==e.axis&&(r=_.default(e,!1,r)),\"longlat\"===e.projName)r={x:r.x*u.D2R,y:r.y*u.D2R,z:r.z||0};else if(e.to_meter&&(r={x:r.x*e.to_meter,y:r.y*e.to_meter,z:r.z||0}),!(r=e.inverse(r)))return;return e.from_greenwich&&(r.x+=e.from_greenwich),r=m.default(e.datum,a.datum,r),a.from_greenwich&&(r={x:r.x-a.from_greenwich,y:r.y,z:r.z||0}),\"longlat\"===a.projName?r={x:r.x*u.R2D,y:r.y*u.R2D,z:r.z||0}:(r=a.forward(r),a.to_meter&&(r={x:r.x/a.to_meter,y:r.y/a.to_meter,z:r.z||0})),\"enu\"!==a.axis?_.default(a,!0,r):r}},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const u=e(44),o=e(66);function _(e){return e===u.PJD_3PARAM||e===u.PJD_7PARAM}a.default=function(e,t,a){return o.compareDatums(e,t)||e.datum_type===u.PJD_NODATUM||t.datum_type===u.PJD_NODATUM?a:e.es!==t.es||e.a!==t.a||_(e.datum_type)||_(t.datum_type)?(a=o.geodeticToGeocentric(a,e.es,e.a),_(e.datum_type)&&(a=o.geocentricToWgs84(a,e.datum_type,e.datum_params)),_(t.datum_type)&&(a=o.geocentricFromWgs84(a,t.datum_type,t.datum_params)),o.geocentricToGeodetic(a,t.es,t.a,t.b)):a}},\n", - " function _(a,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(44);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===e.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==e.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,u,s,_,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-e.HALF_PI&&d>-1.001*e.HALF_PI)d=-e.HALF_PI;else if(d>e.HALF_PI&&d<1.001*e.HALF_PI)d=e.HALF_PI;else{if(d<-e.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>e.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),u=Math.sin(d),_=Math.cos(d),s=u*u,{x:((m=r/Math.sqrt(1-t*s))+i)*_*Math.cos(n),y:(m+i)*_*Math.sin(n),z:(m*(1-t)+i)*u}},r.geocentricToGeodetic=function(a,t,r,m){var u,s,_,n,d,i,p,P,o,y,M,z,c,A,x,f=a.x,h=a.y,I=a.z?a.z:0;if(u=Math.sqrt(f*f+h*h),s=Math.sqrt(f*f+h*h+I*I),u/r<1e-12){if(A=0,s/r<1e-12)return e.HALF_PI,x=-m,{x:a.x,y:a.y,z:a.z}}else A=Math.atan2(h,f);_=I/s,P=(n=u/s)*(1-t)*(d=1/Math.sqrt(1-t*(2-t)*n*n)),o=_*d,c=0;do{c++,i=t*(p=r/Math.sqrt(1-t*o*o))/(p+(x=u*P+I*o-p*(1-t*o*o))),z=(M=_*(d=1/Math.sqrt(1-i*(2-i)*n*n)))*P-(y=n*(1-i)*d)*o,P=y,o=M}while(z*z>1e-24&&c<30);return{x:A,y:Math.atan(M/Math.abs(y)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-_*a.z)+u,z:i*(-n*a.x+_*a.y+a.z)+s}}},r.geocentricFromWgs84=function(a,t,r){if(t===e.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===e.PJD_7PARAM){var m=r[0],u=r[1],s=r[2],_=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-u)/i,o=(a.z-s)/i;return{x:p+d*P-n*o,y:-d*p+P+_*o,z:n*p-_*P+o}}}},\n", - " function _(e,a,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.default=function(e,a,i){var s,n,r,c=i.x,d=i.y,u=i.z||0,f={};for(r=0;r<3;r++)if(!a||2!==r||void 0!==i.z)switch(0===r?(s=c,n=-1!==\"ew\".indexOf(e.axis[r])?\"x\":\"y\"):1===r?(s=d,n=-1!==\"ns\".indexOf(e.axis[r])?\"y\":\"x\"):(s=u,n=\"z\"),e.axis[r]){case\"e\":case\"w\":case\"n\":case\"s\":f[n]=s;break;case\"u\":void 0!==i[n]&&(f.z=s);break;case\"d\":void 0!==i[n]&&(f.z=-s);break;default:return null}return f}},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=function(e){var n={x:e[0],y:e[1]};return e.length>2&&(n.z=e[2]),e.length>3&&(n.m=e[3]),n}},\n", - " function _(e,i,n){function t(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}Object.defineProperty(n,\"__esModule\",{value:!0}),n.default=function(e){t(e.x),t(e.y)}},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(71),s=n.__importStar(e(74)),_=n.__importStar(e(18)),a=e(81),o=e(82);class l extends r.View{get coordinates(){return this._coordinates}initialize(){super.initialize(),this.visuals=new s.Visuals(this.model),this.needs_webgl_blit=!1,this._initialize_coordinates()}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],()=>this._initialize_coordinates())}_initialize_coordinates(){const{x_range_name:e,y_range_name:i}=this.model,{frame:t}=this.plot_view,n=t.x_scales.get(e),r=t.y_scales.get(i);this._coordinates=new o.CoordinateTransform(n,r)}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.plot_view.canvas_view;return\"overlay\"==this.model.level?e:i}request_render(){this.plot_view.request_render()}notify_finished(){this.plot_view.notify_finished()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}}t.RendererView=l,l.__name__=\"RendererView\";class d extends a.Model{constructor(e){super(e)}static init_Renderer(){this.define({level:[_.RenderLevel],visible:[_.Boolean,!0],x_range_name:[_.String,\"default\"],y_range_name:[_.String,\"default\"]})}}t.Renderer=d,d.__name__=\"Renderer\",d.init_Renderer()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),r=t(15),n=t(72),o=t(8),h=i.__importDefault(t(73));class a{constructor(t){if(this.removed=new r.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),null==t.model)throw new Error(\"model of a view wasn't configured\");this.model=t.model,this._parent=t.parent}get ready(){return this._ready}connect(t,e){return t.connect((t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then(()=>i)},this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=n.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this._parent=void 0,this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get parent(){if(void 0!==this._parent)return this._parent;throw new Error(\"parent of a view wasn't configured\")}get is_root(){return null===this.parent}get root(){return this.is_root?this:this.parent.root}assert_root(){if(!this.is_root)throw new Error(this.toString()+\" is not a root layout\")}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){r.Signal.disconnectReceiver(this)}on_change(t,e){for(const s of o.isArray(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[h.default]}}s.View=a,a.__name__=\"View\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(8),o=t(13),s=t=>(e={},...n)=>{const s=document.createElement(t);s.classList.add(\"bk\");for(let[t,n]of o.entries(e))if(null!=n&&(!i.isBoolean(n)||n))if(\"class\"===t&&(i.isString(n)&&(n=n.split(/\\s+/)),i.isArray(n)))for(const t of n)null!=t&&s.classList.add(t);else if(\"style\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.style[t]=e;else if(\"data\"===t&&i.isPlainObject(n))for(const[t,e]of o.entries(n))s.dataset[t]=e;else s.setAttribute(t,n);function l(t){if(i.isString(t))s.appendChild(document.createTextNode(t));else if(t instanceof Node)s.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)s.appendChild(e);else if(null!=t&&!1!==t)throw new Error(\"expected a DOM element, string, false or null, got \"+JSON.stringify(t))}for(const t of n)if(i.isArray(t))for(const e of t)l(e);else l(t);return s};function l(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function r(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function a(t,e){const n=Element.prototype;return(n.matches||n.webkitMatchesSelector||n.mozMatchesSelector||n.msMatchesSelector).call(t,e)}function c(t){return parseFloat(t)||0}function h(t){const e=getComputedStyle(t);return{border:{top:c(e.borderTopWidth),bottom:c(e.borderBottomWidth),left:c(e.borderLeftWidth),right:c(e.borderRightWidth)},margin:{top:c(e.marginTop),bottom:c(e.marginBottom),left:c(e.marginLeft),right:c(e.marginRight)},padding:{top:c(e.paddingTop),bottom:c(e.paddingBottom),left:c(e.paddingLeft),right:c(e.paddingRight)}}}function d(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return s(t)(e,...n)},n.div=s(\"div\"),n.span=s(\"span\"),n.canvas=s(\"canvas\"),n.link=s(\"link\"),n.style=s(\"style\"),n.a=s(\"a\"),n.p=s(\"p\"),n.i=s(\"i\"),n.pre=s(\"pre\"),n.button=s(\"button\"),n.label=s(\"label\"),n.input=s(\"input\"),n.select=s(\"select\"),n.option=s(\"option\"),n.optgroup=s(\"optgroup\"),n.textarea=s(\"textarea\"),n.nbsp=function(){return document.createTextNode(\" \")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=l,n.removeElement=l,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=r,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=a,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(a(n,e))return n;return null},n.extents=h,n.size=d,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=h(t),{width:s,height:l}=d(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=h(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=e.x+\"px\",i.top=e.y+\"px\",i.width=e.width+\"px\",i.height=e.height+\"px\",null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class f{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e\":\"vertical_wave\",\"*\":\"criss_cross\"};class p{constructor(e,t=\"\"){this.obj=e,this.prefix=t,this.cache={};for(const a of this.attrs)this[a]=e.properties[t+a]}warm_cache(e,t){for(const a of this.attrs){const s=this.obj.properties[this.prefix+a];if(void 0!==s.spec.value)this.cache[a]=s.spec.value;else{if(!(null!=e&&s instanceof c.VectorSpec))throw new Error(\"source is required with a vectorized visual property\");{const l=s.array(e),c=null!=t?t.select(l):l;this.cache[a+\"_array\"]=c}}}}cache_select(e,t){const a=this.obj.properties[this.prefix+e];let s;return void 0!==a.spec.value?this.cache[e]=s=a.spec.value:this.cache[e]=s=this.cache[e+\"_array\"][t],s}get_array(e){return this.cache[e+\"_array\"]}set_vectorize(e,t){this._set_vectorize(e,t)}}a.ContextProperties=p,p.__name__=\"ContextProperties\";class f extends p{set_value(e){const t=this.line_color.value(),a=this.line_alpha.value();e.strokeStyle=n(t,a),e.lineWidth=this.line_width.value(),e.lineJoin=this.line_join.value(),e.lineCap=this.line_cap.value(),e.lineDash=this.line_dash.value(),e.lineDashOffset=this.line_dash_offset.value()}get doit(){return!(null===this.line_color.spec.value||0==this.line_alpha.spec.value||0==this.line_width.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"line_color\",t),s=this.cache_select(\"line_alpha\",t),l=this.cache_select(\"line_width\",t),c=this.cache_select(\"line_join\",t),i=this.cache_select(\"line_cap\",t),o=this.cache_select(\"line_dash\",t),r=this.cache_select(\"line_dash_offset\",t);e.strokeStyle=n(a,s),e.lineWidth=l,e.lineJoin=c,e.lineCap=i,e.lineDash=o,e.lineDashOffset=r}color_value(){return n(this.line_color.value(),this.line_alpha.value())}}a.Line=f,f.__name__=\"Line\",f.prototype.attrs=Object.keys(l.LineVector);class d extends p{set_value(e){const t=this.fill_color.value(),a=this.fill_alpha.value();e.fillStyle=n(t,a)}get doit(){return!(null===this.fill_color.spec.value||0==this.fill_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"fill_color\",t),s=this.cache_select(\"fill_alpha\",t);e.fillStyle=n(a,s)}color_value(){return n(this.fill_color.value(),this.fill_alpha.value())}}a.Fill=d,d.__name__=\"Fill\",d.prototype.attrs=Object.keys(l.FillVector);class k extends p{cache_select(e,t){let s;if(\"pattern\"==e){const e=this.cache_select(\"hatch_color\",t),s=this.cache_select(\"hatch_alpha\",t),l=this.cache_select(\"hatch_scale\",t),c=this.cache_select(\"hatch_pattern\",t),i=this.cache_select(\"hatch_weight\",t),{hatch_extra:o}=this.cache;if(null!=o&&o.hasOwnProperty(c)){const t=o[c];this.cache.pattern=t.get_pattern(e,s,l,i)}else this.cache.pattern=t=>{const o=t instanceof r.SVGRenderingContext2D?\"svg\":\"canvas\",p=new h.CanvasLayer(o,!0);return p.resize(l,l),p.prepare(),function(e,t,s,l,c,i){var o;const r=c,h=r/2,p=h/2;switch(e.strokeStyle=n(s,l),e.lineCap=\"square\",e.fillStyle=s,e.lineWidth=i,null!==(o=a.hatch_aliases[t])&&void 0!==o?o:t){case\"blank\":break;case\"dot\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(h,h,h/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":_(e,r,h);break;case\"vertical_line\":u(e,r,h);break;case\"cross\":_(e,r,h),u(e,r,h);break;case\"horizontal_dash\":_(e,h,h);break;case\"vertical_dash\":u(e,h,h);break;case\"spiral\":{const t=r/30;e.moveTo(h,h);for(let a=0;a<360;a++){const s=.1*a,l=h+t*s*Math.cos(s),c=h+t*s*Math.sin(s);e.lineTo(l,c)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-p,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(5*p+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(p+.5,r),e.lineTo(.5-p,0),e.stroke(),e.moveTo(3*p+.5,r),e.lineTo(p+.5,0),e.stroke(),e.moveTo(5*p+.5,r),e.lineTo(3*p+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":v(e,r);break;case\"right_diagonal_dash\":e.moveTo(p+.5,3*p+.5),e.lineTo(3*p+.5,p+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(p+.5,p+.5),e.lineTo(3*p+.5,3*p+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,p),e.lineTo(h,3*p),e.lineTo(r,p),e.stroke();break;case\"vertical_wave\":e.moveTo(p,0),e.lineTo(3*p,h),e.lineTo(p,r),e.stroke();break;case\"criss_cross\":v(e,r),_(e,r,h),u(e,r,h)}}(p.ctx,c,e,s,l,i),t.createPattern(p.canvas,\"repeat\")}}else s=super.cache_select(e,t);return s}_try_defer(e){const{hatch_pattern:t,hatch_extra:a}=this.cache;if(null!=a&&a.hasOwnProperty(t)){a[t].onload(e)}}get doit(){return!(null===this.hatch_color.spec.value||0==this.hatch_alpha.spec.value||\" \"==this.hatch_pattern.spec.value||\"blank\"==this.hatch_pattern.spec.value||null===this.hatch_pattern.spec.value)}doit2(e,t,a,s){if(!this.doit)return;this.cache_select(\"pattern\",t);null==this.cache.pattern(e)?this._try_defer(s):(this.set_vectorize(e,t),a())}_set_vectorize(e,t){this.cache_select(\"pattern\",t),e.fillStyle=this.cache.pattern(e)}color_value(){return n(this.hatch_color.value(),this.hatch_alpha.value())}}a.Hatch=k,k.__name__=\"Hatch\",k.prototype.attrs=Object.keys(l.HatchVector);class x extends p{color_value(){return n(this.text_color.value(),this.text_alpha.value())}font_value(){const e=this.text_font.value(),t=this.text_font_size.value();return`${this.text_font_style.value()} ${t} ${e}`}v_font_value(e){super.cache_select(\"text_font_style\",e),super.cache_select(\"text_font_size\",e),super.cache_select(\"text_font\",e);const{text_font_style:t,text_font_size:a,text_font:s}=this.cache;return`${t} ${a} ${s}`}cache_select(e,t){let a;return\"font\"==e?this.cache.font=a=this.v_font_value(t):a=super.cache_select(e,t),a}set_value(e){const t=this.text_color.value(),a=this.text_alpha.value();e.fillStyle=n(t,a),e.font=this.font_value(),e.textAlign=this.text_align.value(),e.textBaseline=this.text_baseline.value()}get doit(){return!(null===this.text_color.spec.value||0==this.text_alpha.spec.value)}_set_vectorize(e,t){const a=this.cache_select(\"text_color\",t),s=this.cache_select(\"text_alpha\",t),l=this.cache_select(\"font\",t),c=this.cache_select(\"text_align\",t),i=this.cache_select(\"text_baseline\",t);e.fillStyle=n(a,s),e.font=l,e.textAlign=c,e.textBaseline=i}}a.Text=x,x.__name__=\"Text\",x.prototype.attrs=Object.keys(l.TextVector);class b{constructor(e){for(const t of e._mixins){const[a,s=\"\"]=t.split(\":\");let l;switch(a){case\"line\":l=f;break;case\"fill\":l=d;break;case\"hatch\":l=k;break;case\"text\":l=x;break;default:throw new Error(\"unknown visual: \"+a)}this[s+a]=new l(e,s)}}warm_cache(e,t){for(const a in this)if(this.hasOwnProperty(a)){const s=this[a];s instanceof p&&s.warm_cache(e,t)}}}a.Visuals=b,b.__name__=\"Visuals\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(76),n=t(8),r=t(72);function a(t){if(!t)throw new Error(\"cannot create a random attribute name for an undefined object\");const e=\"ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz\";let i=\"\";do{i=\"\";for(let t=0;t<12;t++)i+=e[Math.floor(Math.random()*e.length)]}while(t[i]);return i}function o(t){const e={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return e[t]||e.start}function l(t){const e={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return e[t]||e.alphabetic}const h=function(t,e){const i=new Map,s=t.split(\",\");e=e||10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const b=w(f),v=w(g);this.lineTo(d+f[0]*n,m+f[1]*n),this.arc(d,m,n,b,v)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(\"path\"!==this.__currentElement.nodeName&&this.beginPath(),this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){r.empty(this.__defs),r.empty(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const n=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(n),this.__root.appendChild(n)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[n,r]=this._transform.apply(t,e),[o,l]=this._transform.apply(i,s),h=this.__createElement(\"linearGradient\",{id:a(this.__ids),x1:n+\"px\",x2:o+\"px\",y1:r+\"px\",y2:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(h),new _(h,this)}createRadialGradient(t,e,i,s,n,r){if(!isFinite(t+e+i+s+n+r))throw new Error(\"The provided double value is non-finite\");const[o,l]=this._transform.apply(t,e),[h,c]=this._transform.apply(s,n),u=this.__createElement(\"radialGradient\",{id:a(this.__ids),cx:h+\"px\",cy:c+\"px\",r:r+\"px\",fx:o+\"px\",fy:l+\"px\",gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(u),new _(u,this)}__parseFont(){const t=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font),e={style:t[1]||\"normal\",size:t[4]||\"10px\",family:t[6]||\"sans-serif\",weight:t[3]||\"normal\",decoration:t[2]||\"normal\"};return\"underline\"===this.__fontUnderline&&(e.decoration=\"underline\"),null!=this.__fontHref&&(e.href=this.__fontHref),e}__wrapTextLink(t,e){if(t.href){const i=this.__createElement(\"a\");return i.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.href),i.appendChild(e),i}return e}__applyText(t,e,i,s){const n=this.__parseFont(),r=this.__createElement(\"text\",{\"font-family\":n.family,\"font-size\":n.size,\"font-style\":n.style,\"font-weight\":n.weight,\"text-decoration\":n.decoration,x:e,y:i,\"text-anchor\":o(this.textAlign),\"dominant-baseline\":l(this.textBaseline)},!0);r.appendChild(this.__document.createTextNode(t)),this._apply_transform(r),this.__currentElement=r,this.__applyStyleToCurrentElement(s),this.__root.appendChild(this.__wrapTextLink(n,r))}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,n,r=!1){if(!isFinite(t+e+i+s+n))return;if(s===n)return;(s%=2*Math.PI)===(n%=2*Math.PI)&&(n=(n+2*Math.PI-.001*(r?-1:1))%(2*Math.PI));const a=t+i*Math.cos(n),o=e+i*Math.sin(n),l=t+i*Math.cos(s),h=e+i*Math.sin(s),c=r?0:1;let _=0,u=n-s;u<0&&(u+=2*Math.PI),_=r?u>Math.PI?0:1:u>Math.PI?1:0,this.lineTo(l,h);const p=i,d=i,[m,f]=this._transform.apply(a,o);this.__addPathCommand(m,f,`A ${p} ${d} 0 ${_} ${c} ${m} ${f}`)}clip(){const t=this.__createElement(\"clipPath\"),e=a(this.__ids);this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,n,r,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,n=l,r=h}else if(4==e.length){if([i,s,n,r]=e,!isFinite(i+s+n+r))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(\"Inavlid number of arguments passed to drawImage: \"+arguments.length);if([a,o,l,h,i,s,n,r]=e,!isFinite(a+o+l+h+i+s+n+r))return}const c=this.__root,_=\"translate(\"+i+\", \"+s+\")\",u=this._transform.clone().translate(i,s);if(t instanceof p||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;u.is_identity?i=c:(i=this.__createElement(\"g\"),this._apply_transform(i,u),c.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids[t]=t,this.__defs.appendChild(e)}}else i.appendChild(t)}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\"),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=n,e.height=r;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,n,r),t=e}e.setAttribute(\"transform\",_);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",i),c.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",\"\"+n),e.setAttribute(\"height\",\"\"+r),e.setAttribute(\"preserveAspectRatio\",\"none\");const i=this.__document.createElement(\"canvas\");i.width=n,i.height=r;const s=i.getContext(\"2d\");s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,n,r),t=i,e.setAttribute(\"transform\",_),e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",t.toDataURL()),c.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=a(this.__ids);if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",\"\"+this._to_number(t.width)),i.setAttribute(\"height\",\"\"+this._to_number(t.height)),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttributeNS(\"http://www.w3.org/1999/xlink\",\"xlink:href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof p){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e);this.__defs.appendChild(i)}return new u(i,this)}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return n.isNumber(t)?t:t.baseVal.value}}i.SVGRenderingContext2D=p,p.__name__=\"SVGRenderingContext2D\"},\n", - " function _(t,s,r){Object.defineProperty(r,\"__esModule\",{value:!0});const{sin:e,cos:n}=Math;class i{constructor(t=1,s=0,r=0,e=1,n=0,i=0){this.a=t,this.b=s,this.c=r,this.d=e,this.e=n,this.f=i}toString(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return`matrix(${t}, ${s}, ${r}, ${e}, ${n}, ${i})`}clone(){const{a:t,b:s,c:r,d:e,e:n,f:a}=this;return new i(t,s,r,e,n,a)}get is_identity(){const{a:t,b:s,c:r,d:e,e:n,f:i}=this;return 1==t&&0==s&&0==r&&1==e&&0==n&&0==i}apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this;return[r*t+n*s+a,e*t+i*s+h]}iv_apply(t,s){const{a:r,b:e,c:n,d:i,e:a,f:h}=this,c=t.length;for(let o=0;o{const e=document.createElement(\"canvas\"),t=e.getContext(\"webgl\",{premultipliedAlpha:!0});return null!=t?{canvas:e,gl:t}:void l.logger.trace(\"WebGL is not supported\")})(),v={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class b{constructor(e,t){switch(this.backend=e,this.hidpi=t,this.pixel_ratio=1,this.bbox=new c.BBox,e){case\"webgl\":case\"canvas\":{this._el=this._canvas=r.canvas({style:v});const e=this.canvas.getContext(\"2d\");if(null==e)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=e,t&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const e=new d.SVGRenderingContext2D;this._ctx=e,this._canvas=e.get_svg(),this._el=r.div({style:v},this._canvas);break}}_.fixup_ctx(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t});const i=this._ctx instanceof d.SVGRenderingContext2D?this._ctx:this.canvas;i.width=e*this.pixel_ratio,i.height=t*this.pixel_ratio}prepare(){const{ctx:e,hidpi:t,pixel_ratio:i}=this;e.save(),t&&(e.scale(i,i),e.translate(.5,.5)),this.clear()}clear(){const{x:e,y:t,width:i,height:s}=this.bbox;this.ctx.clearRect(e,t,i,s)}finish(){this.ctx.restore()}to_blob(){const{_canvas:e}=this;if(e instanceof HTMLCanvasElement)return null!=e.msToBlob?Promise.resolve(e.msToBlob()):new Promise((t,i)=>{e.toBlob(e=>null!=e?t(e):i(),\"image/png\")});{const e=this._ctx.get_serialized_svg(!0),t=new Blob([e],{type:\"image/svg+xml\"});return Promise.resolve(t)}}}i.CanvasLayer=b,b.__name__=\"CanvasLayer\";class g extends n.DOMView{constructor(){super(...arguments),this.bbox=new c.BBox}initialize(){super.initialize();const{output_backend:e,hidpi:t}=this.model;\"webgl\"==e&&(this.webgl=p),this.underlays_el=r.div({style:v}),this.primary=new b(e,t),this.overlays=new b(e,t),this.overlays_el=r.div({style:v}),this.events_el=r.div({class:\"bk-canvas-events\",style:v});const i=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];h.extend(this.el.style,v),r.append(this.el,...i),l.logger.debug(\"CanvasView initialized\")}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new c.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const{gl:a}=t;a.enable(a.SCISSOR_TEST);const[n,l,o,r]=e,{xview:h,yview:c}=this.bbox,_=h.compute(n),d=c.compute(l+r),p=this.pixel_ratio;a.scissor(p*_,p*d,p*o,p*r),a.enable(a.BLEND),a.blendFuncSeparate(a.SRC_ALPHA,a.ONE_MINUS_SRC_ALPHA,a.ONE_MINUS_DST_ALPHA,a.ONE)}}clear_webgl(){const{webgl:e}=this;if(null!=e){const{gl:t,canvas:i}=e;t.viewport(0,0,i.width,i.height),t.clearColor(0,0,0,0),t.clear(t.COLOR_BUFFER_BIT||t.DEPTH_BUFFER_BIT)}}blit_webgl(e){const{webgl:t}=this;if(null!=t&&(l.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi)){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}}compose(){const{output_backend:e,hidpi:t}=this.model,{width:i,height:s}=this.bbox,a=new b(e,t);return a.resize(i,s),a.ctx.drawImage(this.primary.canvas,0,0),a.ctx.drawImage(this.overlays.canvas,0,0),a}to_blob(){return this.compose().to_blob()}}i.CanvasView=g,g.__name__=\"CanvasView\";class x extends a.HasProps{constructor(e){super(e)}static init_Canvas(){this.prototype.default_view=g,this.internal({hidpi:[o.Boolean,!0],output_backend:[o.OutputBackend,\"canvas\"]})}}i.Canvas=x,x.__name__=\"Canvas\",x.init_Canvas()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(71),r=e(72);class n extends i.View{initialize(){super.initialize(),this.el=this._createElement()}remove(){r.remove(this.el),super.remove()}css_classes(){return[]}render(){}renderTo(e){e.appendChild(this.el),this.render()}_createElement(){return r.createElement(this.tagName,{class:this.css_classes()})}}t.DOMView=n,n.__name__=\"DOMView\",n.prototype.tagName=\"div\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const h=t(24),{min:r,max:s}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:r(t.x0,i.x0),x1:s(t.x1,i.x1),y0:r(t.y0,i.y0),y1:s(t.y1,i.y1)}};class n{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get rect(){return{x0:this.x0,y0:this.y0,x1:this.x1,y1:this.y1}}get box(){return{x:this.x,y:this.y,width:this.width,height:this.height}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}relativize(){const{width:t,height:i}=this;return new n({x:0,y:0,width:t,height:i})}contains(t,i){return t>=this.x0&&t<=this.x1&&i>=this.y0&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}union(t){return new n({x0:r(this.x0,t.x0),y0:r(this.y0,t.y0),x1:s(this.x1,t.x1),y1:s(this.y1,t.y1)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new h.NumberArray(t.length),e=this.bottom;for(let h=0;he.getLineDash(),set:t=>e.setLineDash(t)})}(e),function(e){e.setImageSmoothingEnabled=t=>{e.imageSmoothingEnabled=t,e.mozImageSmoothingEnabled=t,e.oImageSmoothingEnabled=t,e.webkitImageSmoothingEnabled=t,e.msImageSmoothingEnabled=t},e.getImageSmoothingEnabled=()=>{const t=e.imageSmoothingEnabled;return null==t||t}}(e),function(e){e.measureText&&null==e.html5MeasureText&&(e.html5MeasureText=e.measureText,e.measureText=t=>{const n=e.html5MeasureText(t);return n.ascent=1.6*e.html5MeasureText(\"m\").width,n})}(e),function(e){e.ellipse||(e.ellipse=function(t,n,o,a,i,l,m,r=!1){const u=.551784;e.translate(t,n),e.rotate(i);let s=o,g=a;r&&(s=-o,g=-a),e.moveTo(-s,0),e.bezierCurveTo(-s,g*u,-s*u,g,0,g),e.bezierCurveTo(s*u,g,s,g*u,s,0),e.bezierCurveTo(s,-g*u,s*u,-g,0,-g),e.bezierCurveTo(-s*u,-g,-s,-g*u,-s,0),e.rotate(-i),e.translate(-t,-n)})}(e)}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),c=e(14),i=n.__importStar(e(18)),a=e(8),r=e(13),o=e(19);class l extends c.HasProps{constructor(e){super(e)}static init_Model(){this.define({tags:[i.Array,[]],name:[i.String],js_property_callbacks:[i.Any,{}],js_event_callbacks:[i.Any,{}],subscribed_events:[i.Array,[]]})}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,()=>this._update_property_callbacks()),this.connect(this.properties.js_event_callbacks.change,()=>this._update_event_callbacks()),this.connect(this.properties.subscribed_events.change,()=>this._update_event_callbacks())}_process_event(e){for(const t of this.js_event_callbacks[e.event_name]||[])t.execute(e);null!=this.document&&this.subscribed_events.some(t=>t==e.event_name)&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):o.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of r.entries(this.js_property_callbacks)){const n=s.map(e=>()=>e.execute(this));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){r.isEmpty(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if(a.isString(e))return[...this.references()].filter(t=>t instanceof l&&t.name===e);if(e.prototype instanceof c.HasProps)return[...this.references()].filter(t=>t instanceof e);throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=l,l.__name__=\"Model\",l.init_Model()},\n", - " function _(e,s,_){Object.defineProperty(_,\"__esModule\",{value:!0});class t{constructor(e,s){this.x_scale=e,this.y_scale=s,this.x_range=this.x_scale.source_range,this.y_range=this.y_scale.source_range,this.ranges=[this.x_range,this.y_range],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,s){return[this.x_scale.v_compute(e),this.y_scale.v_compute(s)]}map_from_screen(e,s){return[this.x_scale.v_invert(e),this.y_scale.v_invert(s)]}}_.CoordinateTransform=t,t.__name__=\"CoordinateTransform\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),a=t(36),o=t(84),r=t(85),n=t(28),_=i.__importStar(t(18)),h=t(10);class c extends a.AnnotationView{initialize(){super.initialize(),null==this.model.source&&(this.model.source=new r.ColumnDataSource),this.set_data(this.model.source)}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.set_data(this.model.source)),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}set_data(t){super.set_data(t),this.visuals.warm_cache(t),this.plot_view.request_render()}_map_data(){const{frame:t}=this.plot_view;let e,s,i,a;return\"data\"==this.model.start_units?(e=this.coordinates.x_scale.v_compute(this._x_start),s=this.coordinates.y_scale.v_compute(this._y_start)):(e=t.xview.v_compute(this._x_start),s=t.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(i=this.coordinates.x_scale.v_compute(this._x_end),a=this.coordinates.y_scale.v_compute(this._y_end)):(i=t.xview.v_compute(this._x_end),a=t.yview.v_compute(this._y_end)),[[e,s],[i,a]]}_render(){const{ctx:t}=this.layer;t.save();const[e,s]=this._map_data();null!=this.model.end&&this._arrow_head(t,\"render\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"render\",this.model.start,s,e),t.beginPath();const{x:i,y:a,width:o,height:r}=this.plot_view.frame.bbox;t.rect(i,a,o,r),null!=this.model.end&&this._arrow_head(t,\"clip\",this.model.end,e,s),null!=this.model.start&&this._arrow_head(t,\"clip\",this.model.start,s,e),t.closePath(),t.clip(),this._arrow_body(t,e,s),t.restore()}_arrow_head(t,e,s,i,a){for(let o=0,r=this._x_start.length;onew o.OpenHead({})],source:[_.Instance]})}}s.Arrow=d,d.__name__=\"Arrow\",d.init_Arrow()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),o=i(36),l=i(74),n=i(28),h=t.__importStar(i(18));class a extends o.Annotation{constructor(i){super(i)}static init_ArrowHead(){this.define({size:[h.Number,25]})}initialize(){super.initialize(),this.visuals=new l.Visuals(this)}}s.ArrowHead=a,a.__name__=\"ArrowHead\",a.init_ArrowHead();class r extends a{constructor(i){super(i)}static init_OpenHead(){this.mixins(n.LineVector)}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,0),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.stroke())}}s.OpenHead=r,r.__name__=\"OpenHead\",r.init_OpenHead();class z extends a{constructor(i){super(i)}static init_NormalHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._normal(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._normal(i,e),i.stroke())}_normal(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.closePath()}}s.NormalHead=z,z.__name__=\"NormalHead\",z.init_NormalHead();class _ extends a{constructor(i){super(i)}static init_VeeHead(){this.mixins([n.LineVector,n.FillVector]),this.override({fill_color:\"black\"})}clip(i,e){this.visuals.line.set_vectorize(i,e),i.moveTo(.5*this.size,this.size),i.lineTo(.5*this.size,-2),i.lineTo(-.5*this.size,-2),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.lineTo(.5*this.size,this.size)}render(i,e){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(i,e),this._vee(i,e),i.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),this._vee(i,e),i.stroke())}_vee(i,e){i.beginPath(),i.moveTo(.5*this.size,this.size),i.lineTo(0,0),i.lineTo(-.5*this.size,this.size),i.lineTo(0,.5*this.size),i.closePath()}}s.VeeHead=_,_.__name__=\"VeeHead\",_.init_VeeHead();class c extends a{constructor(i){super(i)}static init_TeeHead(){this.mixins(n.LineVector)}render(i,e){this.visuals.line.doit&&(this.visuals.line.set_vectorize(i,e),i.beginPath(),i.moveTo(.5*this.size,0),i.lineTo(-.5*this.size,0),i.stroke())}clip(i,e){}}s.TeeHead=c,c.__name__=\"TeeHead\",c.init_TeeHead()},\n", - " function _(t,n,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),o=t(86),r=s.__importStar(t(18)),i=t(8),l=t(13),a=s.__importStar(t(119)),c=t(120),u=t(121);function h(t,n,e){if(i.isArray(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if(i.isTypedArray(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let i;t.lengthnew _.UnionRenderers]}),this.internal({selection_manager:[c.Instance,t=>new l.SelectionManager({source:t})],inspected:[c.Instance,()=>new g.Selection]})}initialize(){super.initialize(),this._select=new i.Signal0(this,\"select\"),this.inspect=new i.Signal(this,\"inspect\"),this.streaming=new i.Signal0(this,\"streaming\"),this.patching=new i.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return h.keys(this.data)}get_length(t=!0){const e=u.uniq(h.values(this.data).map(t=>t.length));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return r.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=d,d.__name__=\"ColumnarDataSource\",d.init_ColumnarDataSource()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const c=e(1),n=e(81),o=e(88),i=c.__importStar(e(18));class r extends n.Model{constructor(e){super(e)}static init_DataSource(){this.define({selected:[i.Instance,()=>new o.Selection]})}}a.DataSource=r,r.__name__=\"DataSource\",r.init_DataSource()},\n", - " function _(i,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=i(1),n=i(81),l=t.__importStar(i(18)),c=i(9),h=i(13);class d extends n.Model{constructor(i){super(i)}get_view(){return this.view}static init_Selection(){this.define({indices:[l.Array,[]],line_indices:[l.Array,[]],multiline_indices:[l.Any,{}]}),this.internal({selected_glyphs:[l.Array,[]],view:[l.Any],image_indices:[l.Array,[]]})}initialize(){super.initialize()}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.selected_glyphs=i.selected_glyphs,this.view=i.view,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.view=null,this.selected_glyphs=[]}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=c.union(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=c.intersection(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=c.difference(this.indices,i.indices),this.selected_glyphs=c.union(i.selected_glyphs,this.selected_glyphs),this.line_indices=c.union(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=h.merge(i.multiline_indices,this.multiline_indices)}}s.Selection=d,d.__name__=\"Selection\",d.init_Selection()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(14),o=e(88),c=e(90),r=e(116),l=i.__importStar(e(18));class p extends n.HasProps{constructor(e){super(e),this.inspectors=new Map}static init_SelectionManager(){this.internal({source:[l.Any]})}select(e,t,s,i=\"replace\"){const n=[],o=[];for(const t of e)t instanceof c.GlyphRendererView?n.push(t):t instanceof r.GraphRendererView&&o.push(t);let l=!1;for(const e of o){const n=e.model.selection_policy.hit_test(t,e);l=l||e.model.selection_policy.do_selection(n,e.model,s,i)}if(n.length>0){const e=this.source.selection_policy.hit_test(t,n);l=l||this.source.selection_policy.do_selection(e,this.source,s,i)}return l}inspect(e,t){let s=!1;if(e instanceof c.GlyphRendererView){const i=e.hit_test(t);if(null!=i){s=!i.is_empty();const n=this.get_or_create_inspector(e.model);n.update(i,!0,\"replace\"),this.source.setv({inspected:n},{silent:!0}),this.source.inspect.emit([e,{geometry:t}])}}else if(e instanceof r.GraphRendererView){const i=e.model.inspection_policy.hit_test(t,e);s=s||e.model.inspection_policy.do_inspection(i,t,e,!1,\"replace\")}return s}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new o.Selection,this.inspectors.set(e,t)),t}}s.SelectionManager=p,p.__name__=\"SelectionManager\",p.init_SelectionManager()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),l=e(91),n=e(92),h=e(110),o=e(111),a=e(113),c=e(114),_=e(24),d=s.__importStar(e(18)),r=e(12),p=e(9),g=e(13),u=e(115),y=e(98),m={fill:{},line:{}},v={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},f={fill:{fill_alpha:.2},line:{}};class w extends l.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model.glyph,t=p.includes(e._mixins,\"fill\"),i=p.includes(e._mixins,\"line\"),s=g.clone(e.attributes);function l(l){const n=g.clone(s);return t&&g.extend(n,l.fill),i&&g.extend(n,l.line),new e.constructor(n)}delete s.id,this.glyph=await this.build_glyph_view(e);let{selection_glyph:n}=this.model;null==n?n=l({fill:{},line:{}}):\"auto\"===n&&(n=l(m)),this.selection_glyph=await this.build_glyph_view(n);let{nonselection_glyph:h}=this.model;null==h?h=l({fill:{},line:{}}):\"auto\"===h&&(h=l(f)),this.nonselection_glyph=await this.build_glyph_view(h);const{hover_glyph:o}=this.model;null!=o&&(this.hover_glyph=await this.build_glyph_view(o));const{muted_glyph:a}=this.model;null!=a&&(this.muted_glyph=await this.build_glyph_view(a));const c=l(v);this.decimated_glyph=await this.build_glyph_view(c),this.set_data(!1)}async build_glyph_view(e){return u.build_view(e,{parent:this})}remove(){var e,t;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),null===(t=this.muted_glyph)||void 0===t||t.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.glyph.change,()=>this.set_data()),this.connect(this.model.data_source.change,()=>this.set_data()),this.connect(this.model.data_source.streaming,()=>this.set_data()),this.connect(this.model.data_source.patching,e=>this.set_data(!0,e)),this.connect(this.model.data_source.selected.change,()=>this.request_render()),this.connect(this.model.data_source._select,()=>this.request_render()),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,()=>this.request_render()),this.connect(this.model.properties.view.change,()=>this.set_data()),this.connect(this.model.view.properties.indices.change,()=>this.set_data()),this.connect(this.model.view.properties.masked.change,()=>this.set_visuals()),this.connect(this.model.properties.visible.change,()=>this.plot_view.update_dataranges());const{x_ranges:e,y_ranges:t}=this.plot_view.frame;for(const[,t]of e)t instanceof y.FactorRange&&this.connect(t.change,()=>this.set_data());for(const[,e]of t)e instanceof y.FactorRange&&this.connect(e.change,()=>this.set_data());this.connect(this.model.glyph.transformchange,()=>this.set_data())}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}set_data(e=!0,t=null){const i=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:s}=this;this.glyph.set_data(i,s,t),this.set_visuals(),this._update_masked_indices();const{lod_factor:l}=this.plot_model,n=this.all_indices.count;this.decimated=new _.Indices(n);for(let e=0;e!_||_.is_empty()?[]:_.selected_glyph?this.model.view.convert_indices_from_subset(i):_.indices.length>0?_.indices:Object.keys(_.multiline_indices).map(e=>parseInt(e)))()),g=r.filter(i,e=>d.has(t[e])),{lod_threshold:u}=this.plot_model;let y,m,v;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=u&&t.length>u?(i=[...this.decimated],y=this.decimated_glyph,m=this.decimated_glyph,v=this.selection_glyph):(y=this.model.muted&&null!=this.muted_glyph?this.muted_glyph:this.glyph,m=this.nonselection_glyph,v=this.selection_glyph),null!=this.hover_glyph&&g.length&&(i=p.difference(i,g)),c.length){const e={};for(const t of c)e[t]=!0;const l=new Array,h=new Array;if(this.glyph instanceof n.LineView)for(const i of t)null!=e[i]?l.push(i):h.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):h.push(s);m.render(s,h,this.glyph),v.render(s,l,this.glyph),null!=this.hover_glyph&&(this.glyph instanceof n.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):this.hover_glyph.render(s,g,this.glyph))}else if(this.glyph instanceof n.LineView)this.hover_glyph&&g.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(g),this.glyph):y.render(s,t,this.glyph);else if(this.glyph instanceof h.PatchView||this.glyph instanceof o.HAreaView||this.glyph instanceof a.VAreaView)if(0==_.selected_glyphs.length||null==this.hover_glyph)y.render(s,t,this.glyph);else for(const e of _.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t,this.glyph);else y.render(s,i,this.glyph),this.hover_glyph&&g.length&&this.hover_glyph.render(s,g,this.glyph);s.restore()}draw_legend(e,t,i,s,l,n,h,o){null==o&&(o=this.model.get_reference_point(n,h)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o)}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=w,w.__name__=\"GlyphRendererView\";class b extends l.DataRenderer{constructor(e){super(e)}static init_GlyphRenderer(){this.prototype.default_view=w,this.define({data_source:[d.Instance],view:[d.Instance,()=>new c.CDSView],glyph:[d.Instance],hover_glyph:[d.Instance],nonselection_glyph:[d.Any,\"auto\"],selection_glyph:[d.Any,\"auto\"],muted_glyph:[d.Instance],muted:[d.Boolean,!1]})}initialize(){super.initialize(),null==this.view.source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){let i=0;if(null!=e){const s=this.data_source.get_column(e);if(null!=s){const e=r.indexOf(s,t);-1!=e&&(i=e)}}return i}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=b,b.__name__=\"GlyphRenderer\",b.init_GlyphRenderer()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(70);class n extends a.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=n,n.__name__=\"DataRendererView\";class s extends a.Renderer{constructor(e){super(e)}static init_DataRenderer(){this.override({level:\"glyph\"})}}t.DataRenderer=s,s.__name__=\"DataRenderer\",s.init_DataRenderer()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),n=e(93),l=e(100),_=e(102),r=s.__importStar(e(28)),o=s.__importStar(e(101)),h=e(88);class a extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&(this.glglyph=new _.LineGL(e.gl,this))}_render(e,i,{sx:t,sy:s}){let n=!1,l=null;this.visuals.line.set_value(e);for(const _ of i){if(n){if(!isFinite(t[_]+s[_])){e.stroke(),e.beginPath(),n=!1,l=_;continue}null!=l&&_-l>1&&(e.stroke(),n=!1)}n?e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]),n=!0),l=_}n&&e.stroke()}_hit_point(e){const i=new h.Selection,t={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.visuals.line.line_width.value()/2);for(let e=0,l=this.sx.length-1;ee/2);r=new h.NumberArray(_);for(let i=0;i<_;i++)r[i]=t[i]-e[i];a=new h.NumberArray(_);for(let i=0;i<_;i++)a[i]=t[i]+e[i]}else{r=t,a=new h.NumberArray(_);for(let e=0;e<_;e++)a[e]=r[e]+i[e]}const l=e.v_compute(r),o=e.v_compute(a);return n?d.map(l,(e,t)=>Math.ceil(Math.abs(o[t]-l[t]))):d.map(l,(e,t)=>Math.abs(o[t]-l[t]))}draw_legend_for_index(e,t,i){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(o.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:i,sy0:s,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,i),[_,l]=this.renderer.coordinates.y_scale.r_invert(s,n),o=[...this.index.indices({x0:r,x1:a,y0:_,y1:l})];return new p.Selection({indices:o})}_project_data(){}set_data(e,t,i){var s,r;const{x_range:a,y_range:_}=this.renderer.coordinates;this._data_size=null!==(s=e.get_length())&&void 0!==s?s:1;for(const i of this.model){if(!(i instanceof n.VectorSpec))continue;if(i.optional&&null==i.spec.value&&!i.dirty)continue;const s=i.attr,r=i.array(e);let l=t.select(r);if(i instanceof n.BaseCoordinateSpec){const e=\"x\"==i.dimension?a:_;if(e instanceof u.FactorRange)if(i instanceof n.CoordinateSpec)l=e.v_synthetic(l);else if(i instanceof n.CoordinateSeqSpec)for(let t=0;t>1;n[s]>e?i=s:t=s+1}return n[t]}class x extends i.default{search_indices(e,n,t,i){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let o=this._boxes.length-4;const x=[],h=new s.Indices(this.numItems);for(;void 0!==o;){const s=Math.min(o+4*this.nodeSize,d(o,this._levelBounds));for(let d=o;d>2];tthis._boxes[d+2]||n>this._boxes[d+3]||(o<4*this.numItems?h.set(s):x.push(s)))}o=x.pop()}return h}}x.__name__=\"_FlatBush\";class h{constructor(e){this.index=null,e>0&&(this.index=new x(e))}add(e,n,t,i){var s;null===(s=this.index)||void 0===s||s.add(e,n,t,i)}add_empty(){var e;null===(e=this.index)||void 0===e||e.add(1/0,1/0,-1/0,-1/0)}finish(){var e;null===(e=this.index)||void 0===e||e.finish()}_normalize(e){let{x0:n,y0:t,x1:i,y1:s}=e;return n>i&&([n,i]=[i,n]),t>s&&([t,s]=[s,t]),{x0:n,y0:t,x1:i,y1:s}}get bbox(){if(null==this.index)return o.empty();{const{minX:e,minY:n,maxX:t,maxY:i}=this.index;return{x0:e,y0:n,x1:t,y1:i}}}indices(e){if(null==this.index)return new s.Indices(0);{const{x0:n,y0:t,x1:i,y1:s}=this._normalize(e);return this.index.search_indices(n,t,i,s)}}bounds(e){const n=o.empty();for(const t of this.indices(e)){const e=this.index._boxes,i=e[4*t+0],s=e[4*t+1],o=e[4*t+2],d=e[4*t+3];on.x1&&(n.x1=i),dn.y1&&(n.y1=s)}return n}}t.SpatialIndex=h,h.__name__=\"SpatialIndex\"},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1).__importDefault(t(97)),h=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class n{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[o]=new Uint32Array(t,4,1);return new n(o,e,h[15&i],t)}constructor(t,s=16,i=Float64Array,n){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let o=t,r=o;this._levelBounds=[4*o];do{o=Math.ceil(o/this.nodeSize),r+=o,this._levelBounds.push(4*r)}while(1!==o);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=h.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);n&&n instanceof ArrayBuffer?(this.data=n,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new e.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e=Math.floor(n/o))return;const r=s[h+n>>1];let _=h-1,d=n+1;for(;;){do{_++}while(s[_]r);if(_>=d)break;a(s,i,e,_,d)}t(s,i,e,h,d,o),t(s,i,e,d+1,n,o)}(i,this._boxes,this._indices,0,this.numItems-1,this.nodeSize);for(let t=0,s=0;t>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],a=[];for(;void 0!==n;){const _=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let r=n;r<_;r+=4){const _=0|this._indices[r>>2];ithis._boxes[r+2]||s>this._boxes[r+3]||(n<4*this.numItems?(void 0===h||h(_))&&a.push(_):o.push(_)))}n=o.pop()}return a}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const a=this._queue,_=[],d=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,r(n,this._levelBounds));for(let i=n;i>2],r=o(t,this._boxes[i],this._boxes[i+2]),_=o(s,this._boxes[i+1],this._boxes[i+3]),d=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&a.push(-e-1,d):a.push(e,d)}for(;a.length&&a.peek()<0;){if(a.peekValue()>d)return a.clear(),_;if(_.push(-a.pop()-1),_.length===i)return a.clear(),_}n=a.pop()}return a.clear(),_}}function o(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function a(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],d=s[o+2],x=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=d,s[r+3]=x;const l=i[e];i[e]=i[h],i[h]=l}function _(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let d=t^s,x=e|65535^(d|i);return d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),(x<<1|d)>>>0}i.default=n},\n", - " function _(s,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=t(1),i=t(99),r=s.__importStar(t(18)),a=t(24),o=t(9),p=t(8),g=t(11);function c(t,e,n=0){const s=new Map;for(let i=0;ia.get(t).value));r.set(t,{value:u/i,mapping:a}),p+=i+e+l}return[r,(a.size-1)*e+g]}function u(t,e,n,s,i=0){var r;const a=new Map,p=new Map;for(const[e,n,s]of t){const t=null!==(r=p.get(e))&&void 0!==r?r:[];p.set(e,[...t,[n,s]])}let g=i,c=0;for(const[t,i]of p){const r=i.length,[p,u]=l(i,n,s,g);c+=u;const h=o.sum(i.map(([t])=>p.get(t).value));a.set(t,{value:h/r,mapping:p}),g+=r+e+u}return[a,(p.size-1)*e+c]}n.map_one_level=c,n.map_two_levels=l,n.map_three_levels=u;class h extends i.Range{constructor(t){super(t)}static init_FactorRange(){this.define({factors:[r.Array,[]],factor_padding:[r.Number,0],subgroup_padding:[r.Number,.8],group_padding:[r.Number,1.4],range_padding:[r.Number,0],range_padding_units:[r.PaddingUnits,\"percent\"],start:[r.Number],end:[r.Number]}),this.internal({levels:[r.Number],mids:[r.Array,null],tops:[r.Array,null]})}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,()=>this.reset()),this.connect(this.properties.factor_padding.change,()=>this.reset()),this.connect(this.properties.group_padding.change,()=>this.reset()),this.connect(this.properties.subgroup_padding.change,()=>this.reset()),this.connect(this.properties.range_padding.change,()=>this.reset()),this.connect(this.properties.range_padding_units.change,()=>this.reset())}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[e]=t,n=this._mapping.get(e);return null!=n?n.value:NaN}case 2:{const[e,n]=t,s=this._mapping.get(e);if(null!=s){const t=s.mapping.get(n);if(null!=t)return t.value}return NaN}case 3:{const[e,n,s]=t,i=this._mapping.get(e);if(null!=i){const t=i.mapping.get(n);if(null!=t){const e=t.mapping.get(s);if(null!=e)return e.value}}return NaN}default:g.unreachable()}}synthetic(t){if(p.isNumber(t))return t;if(p.isString(t))return this._lookup([t]);let e=0;const n=t[t.length-1];return p.isNumber(n)&&(e=n,t=t.slice(0,-1)),this._lookup(t)+e}v_synthetic(t){const e=t.length,n=new a.NumberArray(e);for(let s=0;s{if(o.every(this.factors,p.isString)){const t=this.factors,[e,n]=c(t,this.factor_padding);return{levels:1,mapping:e,tops:null,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&2==t.length&&p.isString(t[0])&&p.isString(t[1]))){const t=this.factors,[e,n]=l(t,this.group_padding,this.factor_padding),s=[...e.keys()];return{levels:2,mapping:e,tops:s,mids:null,inside_padding:n}}if(o.every(this.factors,t=>p.isArray(t)&&3==t.length&&p.isString(t[0])&&p.isString(t[1])&&p.isString(t[2]))){const t=this.factors,[e,n]=u(t,this.group_padding,this.subgroup_padding,this.factor_padding),s=[...e.keys()],i=[];for(const[t,n]of e)for(const e of n.mapping.keys())i.push([t,e]);return{levels:3,mapping:e,tops:s,mids:i,inside_padding:n}}g.unreachable()})();this._mapping=n,this.tops=s,this.mids=i;let a=0,h=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(h-a)*this.range_padding/2;a-=t,h+=t}else a-=this.range_padding,h+=this.range_padding;this.setv({start:a,end:h,levels:e},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,h]},{silent:!0})}}n.FactorRange=h,h.__name__=\"FactorRange\",h.init_FactorRange()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(81),a=n.__importStar(e(18));class r extends s.Model{constructor(e){super(e),this.have_updated_interactively=!1}static init_Range(){this.define({bounds:[a.Any],min_interval:[a.Any],max_interval:[a.Any]}),this.internal({plots:[a.Array,[]]})}get is_reversed(){return this.start>this.end}get is_valid(){return!isNaN(this.min)&&!isNaN(this.max)}}i.Range=r,r.__name__=\"Range\",r.init_Range()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1).__importStar(e(101));i.generic_line_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){t.save(),t.beginPath(),t.moveTo(i,(c+o)/2),t.lineTo(n,(c+o)/2),e.line.doit&&(e.line.set_vectorize(t,r),t.stroke()),t.restore()},i.generic_area_legend=function(e,t,{x0:i,x1:n,y0:c,y1:o},r){const l=.1*Math.abs(n-i),a=.1*Math.abs(o-c),s=i+l,_=n-l,h=c+a,v=o-a;e.fill.doit&&(e.fill.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),null!=e.hatch&&e.hatch.doit&&(e.hatch.set_vectorize(t,r),t.fillRect(s,h,_-s,v-h)),e.line&&e.line.doit&&(t.beginPath(),t.rect(s,h,_-s,v-h),e.line.set_vectorize(t,r),t.stroke())},i.line_interpolation=function(e,t,i,c,o,r){const{sx:l,sy:a}=t;let s,_,h,v;\"point\"==t.type?([h,v]=e.yscale.r_invert(a-1,a+1),[s,_]=e.xscale.r_invert(l-1,l+1)):\"v\"==t.direction?([h,v]=e.yscale.r_invert(a,a),[s,_]=[Math.min(i-1,o-1),Math.max(i+1,o+1)]):([s,_]=e.xscale.r_invert(l,l),[h,v]=[Math.min(c-1,r-1),Math.max(c+1,r+1)]);const{x,y}=n.check_2_segments_intersect(s,h,_,v,i,c,o,r);return[x,y]}},\n", - " function _(t,n,e){function i(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function r(t,n,e){const r=i(n,e);if(0==r)return i(t,n);const s=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/r;if(s<0)return i(t,n);if(s>1)return i(t,e);return i(t,{x:n.x+s*(e.x-n.x),y:n.y+s*(e.y-n.y)})}Object.defineProperty(e,\"__esModule\",{value:!0}),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&l>0&&l<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(103),a=t(107),n=t(108),o=t(109),_=t(22);class h{constructor(t){this._atlas=new Map,this._width=256,this._height=256,this.tex=new i.Texture2d(t),this.tex.set_wrapping(t.REPEAT,t.REPEAT),this.tex.set_interpolation(t.NEAREST,t.NEAREST),this.tex.set_size([this._width,this._height],t.RGBA),this.tex.set_data([0,0],[this._width,this._height],new Uint8Array(4*this._width*this._height)),this.get_atlas_data([1])}get_atlas_data(t){const e=t.join(\"-\");let s=this._atlas.get(e);if(null==s){const[i,a]=this.make_pattern(t),n=this._atlas.size;this.tex.set_data([0,n],[this._width,1],new Uint8Array(i.map(t=>t+10))),s=[n/this._height,a],this._atlas.set(e,s)}return s}make_pattern(t){t.length>1&&t.length%2&&(t=t.concat(t));let e=0;for(const s of t)e+=s;const s=[];let i=0;for(let e=0,a=t.length+2;es[r]?-1:0,o=s[r-1],i=s[r]),n[4*t+0]=s[r],n[4*t+1]=_,n[4*t+2]=o,n[4*t+3]=i}return[n,e]}}h.__name__=\"DashAtlas\";const r={miter:0,round:1,bevel:2},l={\"\":0,none:0,\".\":0,round:1,\")\":1,\"(\":1,o:1,\"triangle in\":2,\"<\":2,\"triangle out\":3,\">\":3,square:4,\"[\":4,\"]\":4,\"=\":4,butt:5,\"|\":5};class g extends a.BaseGLGlyph{init(){const{gl:t}=this;this._scale_aspect=0;const e=n.vertex_shader,s=o.fragment_shader;this.prog=new i.Program(t),this.prog.set_shaders(e,s),this.index_buffer=new i.IndexBuffer(t),this.vbo_position=new i.VertexBuffer(t),this.vbo_tangents=new i.VertexBuffer(t),this.vbo_segment=new i.VertexBuffer(t),this.vbo_angles=new i.VertexBuffer(t),this.vbo_texcoord=new i.VertexBuffer(t),this.dash_atlas=new h(t)}draw(t,e,s){const i=e.glglyph;if(i.data_changed&&(i._set_data(),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),i._update_scale(1,1),this._scale_aspect=1,this.prog.set_attribute(\"a_position\",\"vec2\",i.vbo_position),this.prog.set_attribute(\"a_tangents\",\"vec4\",i.vbo_tangents),this.prog.set_attribute(\"a_segment\",\"vec2\",i.vbo_segment),this.prog.set_attribute(\"a_angles\",\"vec2\",i.vbo_angles),this.prog.set_attribute(\"a_texcoord\",\"vec2\",i.vbo_texcoord),this.prog.set_uniform(\"u_length\",\"float\",[i.cumsum]),this.prog.set_texture(\"u_dash_atlas\",this.dash_atlas.tex),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_uniform(\"u_scale_aspect\",\"vec2\",[1,1]),this.prog.set_uniform(\"u_scale_length\",\"float\",[Math.sqrt(2)]),this.I_triangles=i.I_triangles,this.I_triangles.length<65535)this.index_buffer.set_size(2*this.I_triangles.length),this.index_buffer.set_data(0,new Uint16Array(this.I_triangles)),this.prog.draw(this.gl.TRIANGLES,this.index_buffer);else{t=Array.from(this.I_triangles);const e=this.I_triangles.length,s=64008,a=[];for(let t=0,i=Math.ceil(e/s);t1)for(let e=0;e0||console.log(`Variable ${t} is not an active attribute`));else if(this._unset_variables.has(t)&&this._unset_variables.delete(t),this.activate(),i instanceof s.VertexBuffer){const[s,n]=this.ATYPEINFO[e],h=\"vertexAttribPointer\",l=[s,n,!1,a,r];this._attributes.set(t,[i.handle,o,h,l])}else{const s=this.ATYPEMAP[e];this._attributes.set(t,[null,o,s,i])}}_pre_draw(){this.activate();for(const[t,e,i]of this._samplers.values())this.gl.activeTexture(this.gl.TEXTURE0+i),this.gl.bindTexture(t,e);for(const[t,e,i,s]of this._attributes.values())null!=t?(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,t),this.gl.enableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s])):(this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(e),this.gl[i].apply(this.gl,[e,...s]));this._validated||(this._validated=!0,this._validate())}_validate(){if(this._unset_variables.size&&console.log(\"Program has unset variables: \"+this._unset_variables),this.gl.validateProgram(this.handle),!this.gl.getProgramParameter(this.handle,this.gl.VALIDATE_STATUS))throw console.log(this.gl.getProgramInfoLog(this.handle)),new Error(\"Program validation error\")}draw(t,e){if(!this._linked)throw new Error(\"Cannot draw program if code has not been set\");if(e instanceof s.IndexBuffer){this._pre_draw(),e.activate();const i=e.buffer_size/2,s=this.gl.UNSIGNED_SHORT;this.gl.drawElements(t,i,s,0),e.deactivate()}else{const[i,s]=e;0!=s&&(this._pre_draw(),this.gl.drawArrays(t,i,s))}}}i.Program=a,a.__name__=\"Program\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class i{constructor(e){this.gl=e,this._usage=35048,this.buffer_size=0,this.handle=this.gl.createBuffer()}delete(){this.gl.deleteBuffer(this.handle)}activate(){this.gl.bindBuffer(this._target,this.handle)}deactivate(){this.gl.bindBuffer(this._target,null)}set_size(e){e!=this.buffer_size&&(this.activate(),this.gl.bufferData(this._target,e,this._usage),this.buffer_size=e)}set_data(e,t){this.activate(),this.gl.bufferSubData(this._target,e,t)}}s.Buffer=i,i.__name__=\"Buffer\";class r extends i{constructor(){super(...arguments),this._target=34962}}s.VertexBuffer=r,r.__name__=\"VertexBuffer\";class a extends i{constructor(){super(...arguments),this._target=34963}}s.IndexBuffer=a,a.__name__=\"IndexBuffer\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=t(11);class r{constructor(t){this.gl=t,this._target=3553,this._types={Int8Array:5120,Uint8Array:5121,Int16Array:5122,Uint16Array:5123,Int32Array:5124,Uint32Array:5125,Float32Array:5126},this.handle=this.gl.createTexture()}delete(){this.gl.deleteTexture(this.handle)}activate(){this.gl.bindTexture(this._target,this.handle)}deactivate(){this.gl.bindTexture(this._target,0)}_get_alignment(t){const e=[4,8,2,1];for(const i of e)if(t%i==0)return i;a.unreachable()}set_wrapping(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_S,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_WRAP_T,e)}set_interpolation(t,e){this.activate(),this.gl.texParameterf(this._target,this.gl.TEXTURE_MIN_FILTER,t),this.gl.texParameterf(this._target,this.gl.TEXTURE_MAG_FILTER,e)}set_size([t,e],i){var a,r,s;t==(null===(a=this._shape_format)||void 0===a?void 0:a.width)&&e==(null===(r=this._shape_format)||void 0===r?void 0:r.height)&&i==(null===(s=this._shape_format)||void 0===s?void 0:s.format)||(this._shape_format={width:t,height:e,format:i},this.activate(),this.gl.texImage2D(this._target,0,i,t,e,0,i,this.gl.UNSIGNED_BYTE,null))}set_data(t,[e,i],a){this.activate();const{format:r}=this._shape_format,[s,h]=t,l=this._types[a.constructor.name];if(null==l)throw new Error(`Type ${a.constructor.name} not allowed for texture`);const _=this._get_alignment(e);4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,_),this.gl.texSubImage2D(this._target,0,s,h,e,i,r,l,a),4!=_&&this.gl.pixelStorei(this.gl.UNPACK_ALIGNMENT,4)}}i.Texture2d=r,r.__name__=\"Texture2d\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});class s{constructor(e,t){this.gl=e,this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.init()}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,i){if(0==t.length)return!0;const{width:s,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:s,height:h};return this.draw(t,i,a),!0}}i.BaseGLGlyph=s,s.__name__=\"BaseGLGlyph\"},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.vertex_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size, u_offset;\\nuniform vec2 u_scale_aspect;\\nuniform float u_scale_length;\\n\\nuniform vec4 u_color;\\nuniform float u_antialias;\\nuniform float u_length;\\nuniform float u_linewidth;\\nuniform float u_dash_index;\\nuniform float u_closed;\\n\\nattribute vec2 a_position;\\nattribute vec4 a_tangents;\\nattribute vec2 a_segment;\\nattribute vec2 a_angles;\\nattribute vec2 a_texcoord;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\nfloat cross(in vec2 v1, in vec2 v2)\\n{\\n return v1.x*v2.y - v1.y*v2.x;\\n}\\n\\nfloat signed_distance(in vec2 v1, in vec2 v2, in vec2 v3)\\n{\\n return cross(v2-v1,v1-v3) / length(v2-v1);\\n}\\n\\nvoid rotate( in vec2 v, in float alpha, out vec2 result )\\n{\\n float c = cos(alpha);\\n float s = sin(alpha);\\n result = vec2( c*v.x - s*v.y,\\n s*v.x + c*v.y );\\n}\\n\\nvoid main()\\n{\\n bool closed = (u_closed > 0.0);\\n\\n // Attributes and uniforms to varyings\\n v_color = u_color;\\n v_linewidth = u_linewidth;\\n v_segment = a_segment * u_scale_length;\\n v_length = u_length * u_scale_length;\\n\\n // Scale to map to pixel coordinates. The original algorithm from the paper\\n // assumed isotropic scale. We obviously do not have this.\\n vec2 abs_scale_aspect = abs(u_scale_aspect);\\n vec2 abs_scale = u_scale_length * abs_scale_aspect;\\n\\n // Correct angles for aspect ratio\\n vec2 av;\\n av = vec2(1.0, tan(a_angles.x)) / abs_scale_aspect;\\n v_angles.x = atan(av.y, av.x);\\n av = vec2(1.0, tan(a_angles.y)) / abs_scale_aspect;\\n v_angles.y = atan(av.y, av.x);\\n\\n // Thickness below 1 pixel are represented using a 1 pixel thickness\\n // and a modified alpha\\n v_color.a = min(v_linewidth, v_color.a);\\n v_linewidth = max(v_linewidth, 1.0);\\n\\n // If color is fully transparent we just will discard the fragment anyway\\n if( v_color.a <= 0.0 ) {\\n gl_Position = vec4(0.0,0.0,0.0,1.0);\\n return;\\n }\\n\\n // This is the actual half width of the line\\n float w = ceil(u_antialias+v_linewidth)/2.0;\\n\\n vec2 position = a_position;\\n\\n vec2 t1 = normalize(a_tangents.xy * abs_scale_aspect); // note the scaling for aspect ratio here\\n vec2 t2 = normalize(a_tangents.zw * abs_scale_aspect);\\n float u = a_texcoord.x;\\n float v = a_texcoord.y;\\n vec2 o1 = vec2( +t1.y, -t1.x);\\n vec2 o2 = vec2( +t2.y, -t2.x);\\n\\n // This is a join\\n // ----------------------------------------------------------------\\n if( t1 != t2 ) {\\n float angle = atan (t1.x*t2.y-t1.y*t2.x, t1.x*t2.x+t1.y*t2.y); // Angle needs recalculation for some reason\\n vec2 t = normalize(t1+t2);\\n vec2 o = vec2( + t.y, - t.x);\\n\\n if ( u_dash_index > 0.0 )\\n {\\n // Broken angle\\n // ----------------------------------------------------------------\\n if( (abs(angle) > THETA) ) {\\n position += v * w * o / cos(angle/2.0);\\n float s = sign(angle);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position -= 2.0 * w * t1 / sin(angle);\\n u -= 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == 1.0 ) {\\n position += 2.0 * w * t2 / sin(angle);\\n u += 2.0*w / sin(angle);\\n }\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position += 2.0 * w * t1 / sin(angle);\\n u += 2.0 * w / sin(angle);\\n }\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n if( v == -1.0 ) {\\n position -= 2.0 * w * t2 / sin(angle);\\n u -= 2.0*w / sin(angle);\\n }\\n }\\n }\\n // Continuous angle\\n // ------------------------------------------------------------\\n } else {\\n position += v * w * o / cos(angle/2.0);\\n if( u == +1.0 ) u = v_segment.y;\\n else u = v_segment.x;\\n }\\n }\\n\\n // Solid line\\n // --------------------------------------------------------------------\\n else\\n {\\n position.xy += v * w * o / cos(angle/2.0);\\n if( angle < 0.0 ) {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n } else {\\n if( u == +1.0 ) {\\n u = v_segment.y + v * w * tan(angle/2.0);\\n } else {\\n u = v_segment.x - v * w * tan(angle/2.0);\\n }\\n }\\n }\\n\\n // This is a line start or end (t1 == t2)\\n // ------------------------------------------------------------------------\\n } else {\\n position += v * w * o1;\\n if( u == -1.0 ) {\\n u = v_segment.x - w;\\n position -= w * t1;\\n } else {\\n u = v_segment.y + w;\\n position += w * t2;\\n }\\n }\\n\\n // Miter distance\\n // ------------------------------------------------------------------------\\n vec2 t;\\n vec2 curr = a_position * abs_scale;\\n if( a_texcoord.x < 0.0 ) {\\n vec2 next = curr + t2*(v_segment.y-v_segment.x);\\n\\n rotate( t1, +v_angles.x/2.0, t);\\n v_miter.x = signed_distance(curr, curr+t, position);\\n\\n rotate( t2, +v_angles.y/2.0, t);\\n v_miter.y = signed_distance(next, next+t, position);\\n } else {\\n vec2 prev = curr - t1*(v_segment.y-v_segment.x);\\n\\n rotate( t1, -v_angles.x/2.0,t);\\n v_miter.x = signed_distance(prev, prev+t, position);\\n\\n rotate( t2, -v_angles.y/2.0,t);\\n v_miter.y = signed_distance(curr, curr+t, position);\\n }\\n\\n if (!closed && v_segment.x <= 0.0) {\\n v_miter.x = 1e10;\\n }\\n if (!closed && v_segment.y >= v_length)\\n {\\n v_miter.y = 1e10;\\n }\\n\\n v_texcoord = vec2( u, v*w );\\n\\n // Calculate position in device coordinates. Note that we\\n // already scaled with abs scale above.\\n vec2 normpos = position * sign(u_scale_aspect);\\n normpos += 0.5; // make up for Bokeh's offset\\n normpos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(normpos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n}\\n\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0}),e.fragment_shader=\"\\nprecision mediump float;\\n\\nconst float PI = 3.14159265358979323846264;\\nconst float THETA = 15.0 * 3.14159265358979323846264/180.0;\\n\\nuniform sampler2D u_dash_atlas;\\n\\nuniform vec2 u_linecaps;\\nuniform float u_miter_limit;\\nuniform float u_linejoin;\\nuniform float u_antialias;\\nuniform float u_dash_phase;\\nuniform float u_dash_period;\\nuniform float u_dash_index;\\nuniform vec2 u_dash_caps;\\nuniform float u_closed;\\n\\nvarying vec4 v_color;\\nvarying vec2 v_segment;\\nvarying vec2 v_angles;\\nvarying vec2 v_texcoord;\\nvarying vec2 v_miter;\\nvarying float v_length;\\nvarying float v_linewidth;\\n\\n// Compute distance to cap ----------------------------------------------------\\nfloat cap( int type, float dx, float dy, float t, float linewidth )\\n{\\n float d = 0.0;\\n dx = abs(dx);\\n dy = abs(dy);\\n if (type == 0) discard; // None\\n else if (type == 1) d = sqrt(dx*dx+dy*dy); // Round\\n else if (type == 3) d = (dx+abs(dy)); // Triangle in\\n else if (type == 2) d = max(abs(dy),(t+dx-abs(dy))); // Triangle out\\n else if (type == 4) d = max(dx,dy); // Square\\n else if (type == 5) d = max(dx+t,dy); // Butt\\n return d;\\n}\\n\\n// Compute distance to join -------------------------------------------------\\nfloat join( in int type, in float d, in vec2 segment, in vec2 texcoord, in vec2 miter,\\n in float linewidth )\\n{\\n // texcoord.x is distance from start\\n // texcoord.y is distance from centerline\\n // segment.x and y indicate the limits (as for texcoord.x) for this segment\\n\\n float dx = texcoord.x;\\n\\n // Round join\\n if( type == 1 ) {\\n if (dx < segment.x) {\\n d = max(d,length( texcoord - vec2(segment.x,0.0)));\\n //d = length( texcoord - vec2(segment.x,0.0));\\n } else if (dx > segment.y) {\\n d = max(d,length( texcoord - vec2(segment.y,0.0)));\\n //d = length( texcoord - vec2(segment.y,0.0));\\n }\\n }\\n // Bevel join\\n else if ( type == 2 ) {\\n if (dx < segment.x) {\\n vec2 x = texcoord - vec2(segment.x,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n\\n } else if (dx > segment.y) {\\n vec2 x = texcoord - vec2(segment.y,0.0);\\n d = max(d, max(abs(x.x), abs(x.y)));\\n }\\n /* Original code for bevel which does not work for us\\n if( (dx < segment.x) || (dx > segment.y) )\\n d = max(d, min(abs(x.x),abs(x.y)));\\n */\\n }\\n\\n return d;\\n}\\n\\nvoid main()\\n{\\n // If color is fully transparent we just discard the fragment\\n if( v_color.a <= 0.0 ) {\\n discard;\\n }\\n\\n // Test if dash pattern is the solid one (0)\\n bool solid = (u_dash_index == 0.0);\\n\\n // Test if path is closed\\n bool closed = (u_closed > 0.0);\\n\\n vec4 color = v_color;\\n float dx = v_texcoord.x;\\n float dy = v_texcoord.y;\\n float t = v_linewidth/2.0-u_antialias;\\n float width = 1.0; //v_linewidth; original code had dashes scale with line width, we do not\\n float d = 0.0;\\n\\n vec2 linecaps = u_linecaps;\\n vec2 dash_caps = u_dash_caps;\\n float line_start = 0.0;\\n float line_stop = v_length;\\n\\n // Apply miter limit; fragments too far into the miter are simply discarded\\n if( (dx < v_segment.x) || (dx > v_segment.y) ) {\\n float into_miter = max(v_segment.x - dx, dx - v_segment.y);\\n if (into_miter > u_miter_limit*v_linewidth/2.0)\\n discard;\\n }\\n\\n // Solid line --------------------------------------------------------------\\n if( solid ) {\\n d = abs(dy);\\n if( (!closed) && (dx < line_start) ) {\\n d = cap( int(u_linecaps.x), abs(dx), abs(dy), t, v_linewidth );\\n }\\n else if( (!closed) && (dx > line_stop) ) {\\n d = cap( int(u_linecaps.y), abs(dx)-line_stop, abs(dy), t, v_linewidth );\\n }\\n else {\\n d = join( int(u_linejoin), abs(dy), v_segment, v_texcoord, v_miter, v_linewidth );\\n }\\n\\n // Dash line --------------------------------------------------------------\\n } else {\\n float segment_start = v_segment.x;\\n float segment_stop = v_segment.y;\\n float segment_center= (segment_start+segment_stop)/2.0;\\n float freq = u_dash_period*width;\\n float u = mod( dx + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n float dash_center= tex.x * width;\\n float dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n float dash_start = dx - u + _start;\\n float dash_stop = dx - u + _stop;\\n\\n // Compute extents of the first dash (the one relative to v_segment.x)\\n // Note: this could be computed in the vertex shader\\n if( (dash_stop < segment_start) && (dash_caps.x != 5.0) ) {\\n float u = mod(segment_start + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_start - u + _start;\\n dash_stop = segment_start - u + _stop;\\n }\\n\\n // Compute extents of the last dash (the one relatives to v_segment.y)\\n // Note: This could be computed in the vertex shader\\n else if( (dash_start > segment_stop) && (dash_caps.y != 5.0) ) {\\n float u = mod(segment_stop + u_dash_phase*width, freq);\\n vec4 tex = texture2D(u_dash_atlas, vec2(u/freq, u_dash_index)) * 255.0 -10.0; // conversion to int-like\\n dash_center= tex.x * width;\\n //dash_type = tex.y;\\n float _start = tex.z * width;\\n float _stop = tex.a * width;\\n dash_start = segment_stop - u + _start;\\n dash_stop = segment_stop - u + _stop;\\n }\\n\\n // This test if the we are dealing with a discontinuous angle\\n bool discontinuous = ((dx < segment_center) && abs(v_angles.x) > THETA) ||\\n ((dx >= segment_center) && abs(v_angles.y) > THETA);\\n //if( dx < line_start) discontinuous = false;\\n //if( dx > line_stop) discontinuous = false;\\n\\n float d_join = join( int(u_linejoin), abs(dy),\\n v_segment, v_texcoord, v_miter, v_linewidth );\\n\\n // When path is closed, we do not have room for linecaps, so we make room\\n // by shortening the total length\\n if (closed) {\\n line_start += v_linewidth/2.0;\\n line_stop -= v_linewidth/2.0;\\n }\\n\\n // We also need to take antialias area into account\\n //line_start += u_antialias;\\n //line_stop -= u_antialias;\\n\\n // Check is dash stop is before line start\\n if( dash_stop <= line_start ) {\\n discard;\\n }\\n // Check is dash start is beyond line stop\\n if( dash_start >= line_stop ) {\\n discard;\\n }\\n\\n // Check if current dash start is beyond segment stop\\n if( discontinuous ) {\\n // Dash start is beyond segment, we discard\\n if( (dash_start > segment_stop) ) {\\n discard;\\n //gl_FragColor = vec4(1.0,0.0,0.0,.25); return;\\n }\\n\\n // Dash stop is before segment, we discard\\n if( (dash_stop < segment_start) ) {\\n discard; //gl_FragColor = vec4(0.0,1.0,0.0,.25); return;\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.x == 1.0 ) {\\n if( (u > _stop) && (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for round caps (nicer with this)\\n if( dash_caps.y == 1.0 ) {\\n if( (u < _start) && (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0)) {\\n discard;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.x != 1.0) && (dash_caps.x != 5.0) ) {\\n if( (dash_start < segment_start ) && (abs(v_angles.x) < PI/2.0) ) {\\n float a = v_angles.x/2.0;\\n float x = (segment_start-dx)*cos(a) - dy*sin(a);\\n float y = (segment_start-dx)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the cap into square to avoid holes\\n dash_caps.x = 4.0;\\n }\\n }\\n\\n // Special case for triangle caps (in & out) and square\\n // We make sure the cap stop at crossing frontier\\n if( (dash_caps.y != 1.0) && (dash_caps.y != 5.0) ) {\\n if( (dash_stop > segment_stop ) && (abs(v_angles.y) < PI/2.0) ) {\\n float a = v_angles.y/2.0;\\n float x = (dx-segment_stop)*cos(a) - dy*sin(a);\\n float y = (dx-segment_stop)*sin(a) + dy*cos(a);\\n if( x > 0.0 ) discard;\\n // We transform the caps into square to avoid holes\\n dash_caps.y = 4.0;\\n }\\n }\\n }\\n\\n // Line cap at start\\n if( (dx < line_start) && (dash_start < line_start) && (dash_stop > line_start) ) {\\n d = cap( int(linecaps.x), dx-line_start, dy, t, v_linewidth);\\n }\\n // Line cap at stop\\n else if( (dx > line_stop) && (dash_stop > line_stop) && (dash_start < line_stop) ) {\\n d = cap( int(linecaps.y), dx-line_stop, dy, t, v_linewidth);\\n }\\n // Dash cap left - dash_type = -1, 0 or 1, but there may be roundoff errors\\n else if( dash_type < -0.5 ) {\\n d = cap( int(dash_caps.y), abs(u-dash_center), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash cap right\\n else if( dash_type > 0.5 ) {\\n d = cap( int(dash_caps.x), abs(dash_center-u), dy, t, v_linewidth);\\n if( (dx > line_start) && (dx < line_stop) )\\n d = max(d,d_join);\\n }\\n // Dash body (plain)\\n else {// if( dash_type > -0.5 && dash_type < 0.5) {\\n d = abs(dy);\\n }\\n\\n // Line join\\n if( (dx > line_start) && (dx < line_stop)) {\\n if( (dx <= segment_start) && (dash_start <= segment_start)\\n && (dash_stop >= segment_start) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.x;\\n float f = abs( (segment_start - dx)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( (dx > segment_stop) && (dash_start <= segment_stop)\\n && (dash_stop >= segment_stop) ) {\\n d = d_join;\\n // Antialias at outer border\\n float angle = PI/2.+v_angles.y;\\n float f = abs((dx - segment_stop)*cos(angle) - dy*sin(angle));\\n d = max(f,d);\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n else if( dx < (segment_start - v_linewidth/2.)) {\\n discard;\\n }\\n else if( dx > (segment_stop + v_linewidth/2.)) {\\n discard;\\n }\\n }\\n\\n // Distance to border ------------------------------------------------------\\n d = d - t;\\n if( d < 0.0 ) {\\n gl_FragColor = color;\\n } else {\\n d /= u_antialias;\\n gl_FragColor = vec4(color.rgb, exp(-d*d)*color.a);\\n }\\n}\\n\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),l=e(93),_=e(100),n=s.__importStar(e(101)),o=s.__importStar(e(28)),a=e(88);class h extends l.XYGlyphView{_inner_loop(e,i,t,s,l){for(const _ of i)0!=_?isNaN(t[_]+s[_])?(e.closePath(),l.apply(e),e.beginPath()):e.lineTo(t[_],s[_]):(e.beginPath(),e.moveTo(t[_],s[_]));e.closePath(),l.call(e)}_render(e,i,{sx:t,sy:s}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner_loop(e,i,t,s,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner_loop(e,i,t,s,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_value(e),this._inner_loop(e,i,t,s,e.stroke))}draw_legend_for_index(e,i,t){_.generic_area_legend(this.visuals,e,i,t)}_hit_point(e){const i=new a.Selection;return n.point_in_poly(e.sx,e.sy,this.sx,this.sy)&&(i.add_to_selected_glyphs(this.model),i.view=this),i}}t.PatchView=h,h.__name__=\"PatchView\";class r extends l.XYGlyph{constructor(e){super(e)}static init_Patch(){this.prototype.default_view=h,this.mixins([o.Line,o.Fill,o.Hatch])}}t.Patch=r,r.__name__=\"Patch\",r.init_Patch()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(24),n=e(112),a=i.__importStar(e(101)),_=i.__importStar(e(18)),h=e(88);class l extends n.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r=0;t--)e.lineTo(s[t],i[t]);e.closePath(),r.call(e)}_render(e,t,{sx1:s,sx2:i,sy:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}_hit_point(e){const t=this.sy.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;e=0;s--)e.lineTo(t[s],i[s]);e.closePath(),r.call(e)}_render(e,t,{sx:s,sy1:i,sy2:r}){this.visuals.fill.doit&&(this.visuals.fill.set_value(e),this._inner(e,s,i,r,e.fill)),this.visuals.hatch.doit2(e,0,()=>this._inner(e,s,i,r,e.fill),()=>this.renderer.request_render())}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new r.NumberArray(2*t),i=new r.NumberArray(2*t);for(let e=0,r=t;ethis.compute_indices());const i=()=>{const i=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,i),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,i),this.connect(this.source.patching,i)))};let e=null!=this.source;e?i():this.connect(this.properties.source.change,()=>{e||(i(),e=!0)})}compute_indices(){var i;const{source:e}=this;if(null==e)return;const s=null!==(i=e.get_length())&&void 0!==i?i:1,t=r.Indices.all_set(s);for(const i of this.filters)t.intersect(i.compute_indices(e));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let i=0;ithis._indices[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_selection_to_subset(i){const e=i.indices.map(i=>this.indices_map[i]);return new o.Selection(Object.assign(Object.assign({},i.attributes),{indices:e}))}convert_indices_from_subset(i){return i.map(i=>this._indices[i])}}s.CDSView=a,a.__name__=\"CDSView\",a.init_CDSView()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(9);async function i(e,n,t){const o=new e(Object.assign(Object.assign({},t),{model:n}));return o.initialize(),await o.lazy_initialize(),o}t.build_view=async function(e,n={parent:null},t=(e=>e.default_view)){const o=await i(t(e),e,n);return o.connect_signals(),o},t.build_views=async function(e,n,t={parent:null},s=(e=>e.default_view)){const c=o.difference([...e.keys()],n);for(const n of c)e.get(n).remove(),e.delete(n);const a=[],f=n.filter(n=>!e.has(n));for(const n of f){const o=await i(s(n),n,t);e.set(n,o),a.push(o)}for(const e of a)e.connect_signals();return a},t.remove_views=function(e){for(const[n,t]of e)t.remove(),e.delete(n)}},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),i=e(91),s=e(117),a=t.__importStar(e(18)),o=e(115),_=e(11);class l extends i.DataRendererView{async lazy_initialize(){await super.lazy_initialize();const e=this.model;let r=null,n=null;const t={v_compute(n){_.assert(null==r);const[t]=r=e.layout_provider.get_edge_coordinates(n);return t}},i={v_compute(e){_.assert(null!=r);const[,n]=r;return r=null,n}},s={v_compute(r){_.assert(null==n);const[t]=n=e.layout_provider.get_node_coordinates(r);return t}},a={v_compute(e){_.assert(null!=n);const[,r]=n;return n=null,r}},{edge_renderer:l,node_renderer:d}=this.model;l.glyph.properties.xs.internal=!0,l.glyph.properties.ys.internal=!0,d.glyph.properties.x.internal=!0,d.glyph.properties.y.internal=!0,l.glyph.xs={expr:t},l.glyph.ys={expr:i},d.glyph.x={expr:s},d.glyph.y={expr:a};const{parent:p}=this;this.edge_view=await o.build_view(l,{parent:p}),this.node_view=await o.build_view(d,{parent:p})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,()=>{this.edge_view.set_data(!1),this.node_view.set_data(!1),this.request_render()})}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}}n.GraphRendererView=l,l.__name__=\"GraphRendererView\";class d extends i.DataRenderer{constructor(e){super(e)}static init_GraphRenderer(){this.prototype.default_view=l,this.define({layout_provider:[a.Instance],node_renderer:[a.Instance],edge_renderer:[a.Instance],selection_policy:[a.Instance,()=>new s.NodesOnly],inspection_policy:[a.Instance,()=>new s.NodesOnly]})}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}n.GraphRenderer=d,d.__name__=\"GraphRenderer\",d.init_GraphRenderer()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const d=e(81),s=e(12),o=e(9),_=e(88);class i extends d.Model{constructor(e){super(e)}_hit_test_nodes(e,t){if(!t.model.visible)return null;const n=t.node_view.glyph.hit_test(e);return null==n?null:t.node_view.model.view.convert_selection_from_subset(n)}_hit_test_edges(e,t){if(!t.model.visible)return null;const n=t.edge_view.glyph.hit_test(e);return null==n?null:t.edge_view.model.view.convert_selection_from_subset(n)}}n.GraphHitTestPolicy=i,i.__name__=\"GraphHitTestPolicy\";class r extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}do_selection(e,t,n,d){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,n,d),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.model.get_selection_manager().get_or_create_inspector(n.node_view.model);return o.update(e,d,s),n.node_view.model.data_source.setv({inspected:o},{silent:!0}),n.node_view.model.data_source.inspect.emit([n.node_view,{geometry:t}]),!o.is_empty()}}n.NodesOnly=r,r.__name__=\"NodesOnly\";class c extends i{constructor(e){super(e)}hit_test(e,t){return this._hit_test_nodes(e,t)}get_linked_edges(e,t,n){let d=[];\"selection\"==n?d=e.selected.indices.map(t=>e.data.index[t]):\"inspection\"==n&&(d=e.inspected.indices.map(t=>e.data.index[t]));const s=[];for(let e=0;es.indexOf(e.data.index,t));return new _.Selection({indices:r})}do_selection(e,t,n,d){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,n,d);const o=t.node_renderer.data_source.selected,_=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(_,n,d),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,n,d,s){if(null==e)return!1;const o=n.edge_view.model.data_source.selection_manager.get_or_create_inspector(n.edge_view.model);o.update(e,d,s),n.edge_view.model.data_source.setv({inspected:o},{silent:!0});const _=n.node_view.model.data_source.selection_manager.get_or_create_inspector(n.node_view.model),i=this.get_linked_nodes(n.node_view.model.data_source,n.edge_view.model.data_source,\"inspection\");return _.update(i,d,s),n.node_view.model.data_source.setv({inspected:_},{silent:!0}),n.edge_view.model.data_source.inspect.emit([n.edge_view,{geometry:t}]),!o.is_empty()}}n.EdgesAndLinkedNodes=a,a.__name__=\"EdgesAndLinkedNodes\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(81);class o extends s.Model{do_selection(e,t,n,s){return null!==e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=o,o.__name__=\"SelectionPolicy\";class r extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=r,r.__name__=\"IntersectRenderers\";class c extends o{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!==t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=c,c.__name__=\"UnionRenderers\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.concat=function(t,...e){let n=t.length;for(const t of e)n+=t.length;const o=new t.constructor(n);o.set(t,0);let c=t.length;for(const t of e)o.set(t,c),c+=t.length;return o}},\n", - " function _(n,o,e){function t(...n){const o=new Set;for(const e of n)for(const n of e)o.add(n);return o}Object.defineProperty(e,\"__esModule\",{value:!0}),e.union=t,e.intersection=function(n,...o){const e=new Set;n:for(const t of n){for(const n of o)if(!n.has(t))continue n;e.add(t)}return e},e.difference=function(n,...o){const e=new Set(n);for(const n of t(...o))e.delete(n);return e}},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(14);class o{constructor(e){this.document=e}}s.DocumentEvent=o,o.__name__=\"DocumentEvent\";class r extends o{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=r,r.__name__=\"DocumentEventBatch\";class d extends o{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class _ extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}json(e){const t=this.msg_data,s=n.HasProps._value_to_json(t),o=new Set;return n.HasProps._value_record_references(t,o,{recursive:!0}),{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=_,_.__name__=\"MessageSentEvent\";class i extends d{constructor(e,t,s,n,o,r,d){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=r,this.hint=d}json(e){if(\"id\"===this.attr)throw new Error(\"'id' field should never change, whatever code just set it is wrong\");if(null!=this.hint)return this.hint.json(e);const t=this.new_,s=n.HasProps._value_to_json(t),o=new Set;n.HasProps._value_record_references(t,o,{recursive:!0}),o.has(this.model)&&this.model!==t&&o.delete(this.model);for(const t of o)e.add(t);return{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=i,i.__name__=\"ModelChangedEvent\";class a extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}json(e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=a,a.__name__=\"ColumnsPatchedEvent\";class c extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}json(e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=c,c.__name__=\"ColumnsStreamedEvent\";class h extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}json(e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=h,h.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return n.HasProps._value_record_references(this.model,e,{recursive:!0}),{kind:\"RootAdded\",model:this.model.ref()}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class l extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}json(e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=l,l.__name__=\"RootRemovedEvent\"},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),l=e(123),_=i.__importStar(e(28));class o extends l.UpperLowerView{connect_signals(){super.connect_signals();const e=()=>this.set_data(this.model.source);this.connect(this.model.change,e),this.connect(this.model.source.streaming,e),this.connect(this.model.source.patching,e),this.connect(this.model.source.change,e)}_render(){this._map_data();const{ctx:e}=this.layer;e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;s=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.doit&&(this.visuals.fill.set_value(e),e.fill()),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,t=this._lower_sx.length;snew r.ColumnDataSource]})}}i.UpperLower=a,a.__name__=\"UpperLower\",a.init_UpperLower()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(1),o=t(36),n=t(15),l=e.__importStar(t(28)),a=e.__importStar(t(18)),h=t(79);s.EDGE_TOLERANCE=2.5;class r extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this)),this.connect(this.model.data_update,()=>this.plot_view.request_paint(this))}_render(){if(null==this.model.left&&null==this.model.right&&null==this.model.top&&null==this.model.bottom)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,s=this.coordinates.y_scale,e=(t,i,s,e,o)=>{let n;return n=null!=t?this.model.screen?t:\"data\"==i?s.compute(t):e.compute(t):o,n};this.sleft=e(this.model.left,this.model.left_units,i,t.xview,t.bbox.left),this.sright=e(this.model.right,this.model.right_units,i,t.xview,t.bbox.right),this.stop=e(this.model.top,this.model.top_units,s,t.yview,t.bbox.top),this.sbottom=e(this.model.bottom,this.model.bottom_units,s,t.yview,t.bbox.bottom),this._paint_box(this.sleft,this.sright,this.sbottom,this.stop)}_paint_box(t,i,s,e){const{ctx:o}=this.layer;o.save(),o.beginPath(),o.rect(t,e,i-t,s-e),this.visuals.fill.doit&&(this.visuals.fill.set_value(o),o.fill()),this.visuals.line.doit&&(this.visuals.line.set_value(o),o.stroke()),o.restore()}interactive_bbox(){const t=this.model.properties.line_width.value()+s.EDGE_TOLERANCE;return new h.BBox({x0:this.sleft-t,y0:this.stop-t,x1:this.sright+t,y1:this.sbottom+t})}interactive_hit(t,i){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,i)}cursor(t,i){return Math.abs(t-this.sleft)<3||Math.abs(t-this.sright)<3?this.model.ew_cursor:Math.abs(i-this.sbottom)<3||Math.abs(i-this.stop)<3?this.model.ns_cursor:t>this.sleft&&tthis.stop&&ithis.plot_view.request_render()),this.connect(this.model.formatter.change,()=>this.plot_view.request_render()),null!=this.model.color_mapper&&this.connect(this.model.color_mapper.change,()=>{this._set_canvas_image(),this.plot_view.request_render()})}_get_size(){if(null==this.model.color_mapper)return{width:0,height:0};{const{width:t,height:e}=this.compute_legend_dimensions();return{width:t,height:e}}}_set_canvas_image(){if(null==this.model.color_mapper)return;let t,e,{palette:i}=this.model.color_mapper;switch(\"vertical\"==this.model.orientation&&(i=g.reversed(i)),this.model.orientation){case\"vertical\":[t,e]=[1,i.length];break;case\"horizontal\":[t,e]=[i.length,1]}const o=document.createElement(\"canvas\");o.width=t,o.height=e;const a=o.getContext(\"2d\"),s=a.getImageData(0,0,t,e),r=new n.LinearColorMapper({palette:i}).rgba_mapper.v_compute(g.range(0,i.length));s.data.set(r),a.putImageData(s,0,0),this.image=o}compute_legend_dimensions(){const t=this._computed_image_dimensions(),[e,i]=[t.height,t.width],o=this._get_label_extent(),a=this._title_extent(),s=this._tick_extent(),{padding:r}=this.model;let n,l;switch(this.model.orientation){case\"vertical\":n=e+a+2*r,l=i+s+o+2*r;break;case\"horizontal\":n=e+a+s+o+2*r,l=i+2*r}return{width:l,height:n}}compute_legend_location(){const t=this.compute_legend_dimensions(),[e,i]=[t.height,t.width],o=this.model.margin,a=null!=this.panel?this.panel:this.plot_view.frame,[s,r]=a.bbox.ranges,{location:n}=this.model;let l,_;if(f.isString(n))switch(n){case\"top_left\":l=s.start+o,_=r.start+o;break;case\"top_center\":l=(s.end+s.start)/2-i/2,_=r.start+o;break;case\"top_right\":l=s.end-o-i,_=r.start+o;break;case\"bottom_right\":l=s.end-o-i,_=r.end-o-e;break;case\"bottom_center\":l=(s.end+s.start)/2-i/2,_=r.end-o-e;break;case\"bottom_left\":l=s.start+o,_=r.end-o-e;break;case\"center_left\":l=s.start+o,_=(r.end+r.start)/2-e/2;break;case\"center\":l=(s.end+s.start)/2-i/2,_=(r.end+r.start)/2-e/2;break;case\"center_right\":l=s.end-o-i,_=(r.end+r.start)/2-e/2}else if(f.isArray(n)&&2==n.length){const[t,i]=n;l=a.xview.compute(t),_=a.yview.compute(i)-e}else b.unreachable();return{sx:l,sy:_}}_render(){if(null==this.model.color_mapper)return;const{ctx:t}=this.layer;t.save();const{sx:e,sy:i}=this.compute_legend_location();t.translate(e,i),this._draw_bbox(t);const o=this._get_image_offset();t.translate(o.x,o.y),this._draw_image(t);const a=this.tick_info();this._draw_major_ticks(t,a),this._draw_minor_ticks(t,a),this._draw_major_labels(t,a),this.model.title&&this._draw_title(t),t.restore()}_draw_bbox(t){const e=this.compute_legend_dimensions();t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(0,0,e.width,e.height)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_image(t){const e=this._computed_image_dimensions();t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this.image,0,0,e.width,e.height),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(0,0,e.width,e.height)),t.restore()}_draw_major_ticks(t,e){if(!this.visuals.major_tick_line.doit)return;const[i,o]=this._normals(),a=this._computed_image_dimensions(),[s,r]=[a.width*i,a.height*o],[n,l]=e.coords.major,_=this.model.major_tick_in,h=this.model.major_tick_out;t.save(),t.translate(s,r),this.visuals.major_tick_line.set_value(t);for(let e=0,a=n.length;ei.measureText(t.toString()).width));break;case\"horizontal\":e=u.measure_font(this.visuals.major_label_text.font_value()).height}e+=this.model.label_standoff,i.restore()}return e}_get_image_offset(){return{x:this.model.padding,y:this.model.padding+this._title_extent()}}_normals(){return\"vertical\"==this.model.orientation?[1,0]:[0,1]}_title_extent(){const t=this.model.title_text_font+\" \"+this.model.title_text_font_size+\" \"+this.model.title_text_font_style;return this.model.title?u.measure_font(t).height+this.model.title_standoff:0}_tick_extent(){return g.max([this.model.major_tick_out,this.model.minor_tick_out])}_computed_image_dimensions(){const t=this.plot_view.frame.bbox.height,e=this.plot_view.frame.bbox.width,i=this._title_extent();let o,a;switch(this.model.orientation){case\"vertical\":\"auto\"==this.model.height?null!=this.panel?o=t-2*this.model.padding-i:(o=g.max([25*this.model.color_mapper.palette.length,.3*t]),o=g.min([o,.8*t-2*this.model.padding-i])):o=this.model.height,a=\"auto\"==this.model.width?25:this.model.width;break;case\"horizontal\":o=\"auto\"==this.model.height?25:this.model.height,\"auto\"==this.model.width?null!=this.panel?a=e-2*this.model.padding:(a=g.max([25*this.model.color_mapper.palette.length,.3*e]),a=g.min([a,.8*e-2*this.model.padding])):a=this.model.width}return{width:a,height:o}}_tick_coordinate_scale(t){const e={source_range:new m.Range1d({start:this.model.color_mapper.metrics.min,end:this.model.color_mapper.metrics.max}),target_range:new m.Range1d({start:0,end:t})},{color_mapper:i}=this.model;if(i instanceof n.LinearColorMapper)return new l.LinearScale(e);if(i instanceof n.LogColorMapper)return new h.LogScale(e);if(i instanceof n.ScanningColorMapper){const{binning:t}=i.metrics;return new _.LinearInterpolationScale(Object.assign(Object.assign({},e),{binning:t}))}b.unreachable()}_format_major_labels(t,e){const i=this.model.formatter.doFormat(t,null);for(let t=0,o=e.length;tr||(h[o].push(l[t]),h[a].push(0));for(let t=0,e=_.length;tr||(m[o].push(_[t]),m[a].push(0));const d={major:this._format_major_labels(h[o],l)},c={major:[[],[]],minor:[[],[]]};return c.major[o]=i.v_compute(h[o]),c.minor[o]=i.v_compute(m[o]),c.major[a]=h[a],c.minor[a]=m[a],\"vertical\"==this.model.orientation&&(c.major[o]=p.map(c.major[o],t=>e-t),c.minor[o]=p.map(c.minor[o],t=>e-t)),{coords:c,labels:d}}}i.ColorBarView=v,v.__name__=\"ColorBarView\";class w extends a.Annotation{constructor(t){super(t)}static init_ColorBar(){this.prototype.default_view=v,this.mixins([[\"major_label_\",d.Text],[\"title_\",d.Text],[\"major_tick_\",d.Line],[\"minor_tick_\",d.Line],[\"border_\",d.Line],[\"bar_\",d.Line],[\"background_\",d.Fill]]),this.define({location:[c.Any,\"top_right\"],orientation:[c.Orientation,\"vertical\"],title:[c.String],title_standoff:[c.Number,2],width:[c.Any,\"auto\"],height:[c.Any,\"auto\"],scale_alpha:[c.Number,1],ticker:[c.Instance,()=>new s.BasicTicker],formatter:[c.Instance,()=>new r.BasicTickFormatter],major_label_overrides:[c.Any,{}],color_mapper:[c.Instance],label_standoff:[c.Number,5],margin:[c.Number,30],padding:[c.Number,10],major_tick_in:[c.Number,5],major_tick_out:[c.Number,0],minor_tick_in:[c.Number,0],minor_tick_out:[c.Number,0]}),this.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_align:\"center\",major_label_text_baseline:\"middle\",major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}}i.ColorBar=w,w.__name__=\"ColorBar\",w.init_ColorBar()},\n", - " function _(e,c,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(127);class r extends i.AdaptiveTicker{constructor(e){super(e)}}s.BasicTicker=r,r.__name__=\"BasicTicker\"},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const a=t(1),s=t(128),n=t(9),r=a.__importStar(t(18));class _ extends s.ContinuousTicker{constructor(t){super(t)}static init_AdaptiveTicker(){this.define({base:[r.Number,10],mantissas:[r.Array,[1,2,5]],min_interval:[r.Number,0],max_interval:[r.Number]})}initialize(){super.initialize();const t=n.nth(this.mantissas,-1)/this.base,i=n.nth(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,e){const a=i-t,s=this.get_ideal_interval(t,i,e),r=Math.floor(function(t,i=Math.E){return Math.log(t)/Math.log(i)}(s/this.base_factor,this.base)),_=this.base**r*this.base_factor,h=this.extended_mantissas,m=h.map(t=>Math.abs(e-a/(t*_))),o=h[n.argmin(m)];return c=o*_,l=this.get_min_interval(),u=this.get_max_interval(),Math.max(l,Math.min(u,c));var c,l,u}}e.AdaptiveTicker=_,_.__name__=\"AdaptiveTicker\",_.init_AdaptiveTicker()},\n", - " function _(t,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),r=t(129),s=n.__importStar(t(18)),o=t(9);class _ extends r.Ticker{constructor(t){super(t)}static init_ContinuousTicker(){this.define({num_minor_ticks:[s.Number,5],desired_num_ticks:[s.Number,6]})}get_ticks(t,i,e,n,r){return this.get_ticks_no_defaults(t,i,n,this.desired_num_ticks)}get_ticks_no_defaults(t,i,e,n){const r=this.get_interval(t,i,n),s=Math.floor(t/r),_=Math.ceil(i/r);let c;c=isFinite(s)&&isFinite(_)?o.range(s,_+1):[];const u=c.map(t=>t*r).filter(e=>t<=e&&e<=i),a=this.num_minor_ticks,l=[];if(a>0&&u.length>0){const e=r/a,n=o.range(0,a).map(t=>t*e);for(const e of n.slice(1)){const n=u[0]-e;t<=n&&n<=i&&l.push(n)}for(const e of u)for(const r of n){const n=e+r;t<=n&&n<=i&&l.push(n)}}return{major:u,minor:l}}get_min_interval(){return this.min_interval}get_max_interval(){return null!=this.max_interval?this.max_interval:1/0}get_ideal_interval(t,i,e){return(i-t)/e}}e.ContinuousTicker=_,_.__name__=\"ContinuousTicker\",_.init_ContinuousTicker()},\n", - " function _(e,c,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(81);class r extends o.Model{constructor(e){super(e)}}n.Ticker=r,r.__name__=\"Ticker\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=i(1),s=i(131),n=r.__importStar(i(18));class o extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}static init_BasicTickFormatter(){this.define({precision:[n.Any,\"auto\"],use_scientific:[n.Boolean,!0],power_limit_high:[n.Number,5],power_limit_low:[n.Number,-3]})}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,r=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const s of i){const i=Math.abs(s);if(!(i<=r)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){const r=new Array(i.length);if(t)for(let t=0,s=i.length;t=1;r?s++:s--){if(t){e[0]=i[0].toExponential(s);for(let t=1;tu(e,d))),s=g<0||g>=t.length?r:t[g],c[_]=s}}},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=t(1),o=t(136),_=n.__importStar(t(18)),i=t(8),l=t(22),c=t(32);function a(t){return i.isNumber(t)?t:(\"#\"!=t[0]&&(t=l.color2hex(t)),9!=t.length&&(t+=\"ff\"),parseInt(t.slice(1),16))}function s(t){const e=new Uint32Array(t.length);for(let r=0,n=t.length;rt)),e}get rgba_mapper(){const t=this,e=s(this.palette),r=this._colors(a);return{v_compute(n){const o=new Uint32Array(n.length);return t._v_compute(n,o,e,r),p(o)}}}_colors(t){return{nan_color:t(this.nan_color)}}}r.ColorMapper=u,u.__name__=\"ColorMapper\",u.init_ColorMapper()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(137);class s extends o.Transform{constructor(e){super(e)}compute(e){throw new Error(\"mapping single values is not supported\")}}n.Mapper=s,s.__name__=\"Mapper\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(81);class s extends r.Model{constructor(e){super(e)}}o.Transform=s,s.__name__=\"Transform\"},\n", - " function _(r,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const t=r(1),s=r(134),i=r(136),c=t.__importStar(r(18));class n extends i.Mapper{constructor(r){super(r)}static init_CategoricalMarkerMapper(){this.define({factors:[c.Array],markers:[c.Array],start:[c.Number,0],end:[c.Number],default_value:[c.MarkerType,\"circle\"]})}v_compute(r){const e=new Array(r.length);return s.cat_v_compute(r,this.factors,this.markers,e,this.start,this.end,this.default_value),e}}a.CategoricalMarkerMapper=n,n.__name__=\"CategoricalMarkerMapper\",n.init_CategoricalMarkerMapper()},\n", - " function _(t,e,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=t(1),n=t(134),s=t(136),i=r.__importStar(t(18));class c extends s.Mapper{constructor(t){super(t)}static init_CategoricalPatternMapper(){this.define({factors:[i.Array],patterns:[i.Array],start:[i.Number,0],end:[i.Number],default_value:[i.HatchPatternType,\" \"]})}v_compute(t){const e=new Array(t.length);return n.cat_v_compute(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=c,c.__name__=\"CategoricalPatternMapper\",c.init_CategoricalPatternMapper()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(135),s=t(90),l=t(9),i=t(8);class c extends n.ColorMapper{constructor(t){super(t),this._scan_data=null}static init_ContinuousColorMapper(){this.define(({Number:t,String:o,Null:e,Ref:n,Color:l,Or:i,Tuple:c,Array:a})=>({high:[i(t,e),null],low:[i(t,e),null],high_color:[i(l,e),null],low_color:[i(l,e),null],domain:[a(c(n(s.GlyphRenderer),i(o,a(o)))),[]]}))}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,()=>this.update_data()),this.connect(t.data_source.selected.change,()=>this.update_data())};this.connect(this.properties.domain.change,()=>t()),t()}update_data(){const{domain:t,palette:o}=this,e=[...this._collect(t)];this._scan_data=this.scan(e,o.length),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[o,e]of t)for(const t of i.isArray(e)?e:[e]){let e=o.data_source.get_column(t);e=o.view.indices.select(e);const n=o.view.masked,s=o.data_source.selected.indices;let c;if(null!=n&&s.length>0?c=l.intersection([...n],s):null!=n?c=[...n]:s.length>0&&(c=s),null!=c&&(e=l.map(c,t=>e[t])),e.length>0&&!i.isNumber(e[0]))for(const t of e)yield*t;else yield*e}}_v_compute(t,o,e,n){const{nan_color:s}=n;let{low_color:i,high_color:c}=n;null==i&&(i=e[0]),null==c&&(c=e[e.length-1]);const{domain:a}=this,r=l.is_empty(a)?t:[...this._collect(a)];this._scan_data=this.scan(r,e.length);for(let n=0,l=t.length;na?e:r[l]}}o.LinearColorMapper=a,a.__name__=\"LinearColorMapper\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(140),r=o(12);class l extends e.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:r.min(o),e=null!=this.high?this.high:r.max(o);return{max:e,min:n,scale:t/(Math.log(e)-Math.log(n))}}cmap(o,t,n,e,r){const l=t.length-1;if(o>r.max)return e;if(o==r.max)return t[l];if(ol&&(s=l),t[s]}}n.LogColorMapper=l,l.__name__=\"LogColorMapper\"},\n", - " function _(n,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=n(140),o=n(12);class t extends i.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,r,i,t){if(nt.binning[t.binning.length-1])return i;return e[o.left_edge_index(n,t.binning)]}}r.ScanningColorMapper=t,t.__name__=\"ScanningColorMapper\"},\n", - " function _(n,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=n(1),o=n(143),r=n(12),s=n(9),a=i.__importStar(n(18)),l=n(19);class p extends o.ScanningColorMapper{constructor(n){super(n)}static init_EqHistColorMapper(){this.define({bins:[a.Int,65536]})}scan(n,t){const e=null!=this.low?this.low:r.min(n),i=null!=this.high?this.high:r.max(n),o=this.bins,a=s.linspace(e,i,o+1),p=r.bin_counts(n,a),c=new Array(o);for(let n=0,t=a.length;nn/u);let m=t-1,_=[],M=0,f=2*t;for(;m!=t&&M<4&&0!=m;){const n=f/m;if(n>1e3)break;f=Math.round(Math.max(t*n,t));const e=s.range(0,f),i=r.map(g,n=>n*(f-1));_=r.interpolate(e,i,c);m=s.uniq(_).length-1,M++}if(0==m){_=[e,i];for(let n=0;nthis._sorted_dirty=!0)}v_compute(t){const e=new i.NumberArray(t.length);for(let r=0;rs*(e[t]-e[r])),this._x_sorted=new i.NumberArray(n),this._y_sorted=new i.NumberArray(n);for(let t=0;tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=_.find_last_index(this._x_sorted,s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=i.find_last_index(this._x_sorted,e=>t>=e);break;case\"before\":e=i.find_index(this._x_sorted,e=>t<=e);break;case\"center\":{const r=this._x_sorted.map(e=>Math.abs(e-t)),s=i.min(r);e=i.find_index(r,t=>s===t);break}default:throw new Error(\"unknown mode: \"+this.mode)}return-1!=e?this._y_sorted[e]:NaN}}r.StepInterpolator=n,n.__name__=\"StepInterpolator\",n.init_StepInterpolator()},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=e(1),a=e(147),i=e(24),s=e(9),o=e(12),c=r.__importStar(e(18));class _ extends a.Scale{constructor(e){super(e)}static init_LinearInterpolationScale(){this.internal({binning:[c.Array]})}compute(e){return e}v_compute(e){const t=o.norm(e,this.source_range.start,this.source_range.end),n=s.linspace(0,1,this.binning.length),r=o.interpolate(t,n,this.binning),a=o.norm(r,this.source_range.start,this.source_range.end),c=this.target_range.end-this.target_range.start,_=o.map(a,e=>this.target_range.start+e*c);return new i.NumberArray(_)}invert(e){return e}v_invert(e){return new i.NumberArray(e)}}n.LinearInterpolationScale=_,_.__name__=\"LinearInterpolationScale\",_.init_LinearInterpolationScale()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const a=t(146),r=t(24);class s extends a.ContinuousScale{constructor(t){super(t)}compute(t){const[e,o,a,r]=this._compute_state();let s;if(0==a)s=0;else{const n=(Math.log(t)-r)/a;s=isFinite(n)?n*e+o:NaN}return s}v_compute(t){const[e,o,a,s]=this._compute_state(),n=new r.NumberArray(t.length);if(0==a)for(let e=0;ethis.render()):this.connect(this.model.change,()=>this.plot_view.request_render())}render(){this.model.visible||\"css\"!=this.model.render_mode||a.undisplay(this.el),super.render()}_calculate_text_dimensions(e,t){const{width:s}=e.measureText(t),{height:i}=o.measure_font(this.visuals.text.font_value());return[s,i]}_calculate_bounding_box_dimensions(e,t){const[s,i]=this._calculate_text_dimensions(e,t);let l,a;switch(e.textAlign){case\"left\":l=0;break;case\"center\":l=-s/2;break;case\"right\":l=-s;break;default:r.unreachable()}switch(e.textBaseline){case\"top\":a=0;break;case\"middle\":a=-.5*i;break;case\"bottom\":a=-1*i;break;case\"alphabetic\":a=-.8*i;break;case\"hanging\":a=-.17*i;break;case\"ideographic\":a=-.83*i;break;default:r.unreachable()}return[l,a,s,i]}_canvas_text(e,t,s,i,l){this.visuals.text.set_value(e);const a=this._calculate_bounding_box_dimensions(e,t);e.save(),e.beginPath(),e.translate(s,i),l&&e.rotate(l),e.rect(a[0],a[1],a[2],a[3]),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fill()),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),e.stroke()),this.visuals.text.doit&&(this.visuals.text.set_value(e),e.fillText(t,0,0)),e.restore()}_css_text(e,t,s,i,l){const{el:n}=this;r.assert(null!=n),a.undisplay(n),this.visuals.text.set_value(e);const o=this._calculate_bounding_box_dimensions(e,t),_=this.visuals.border_line.line_dash.value().length<2?\"solid\":\"dashed\";this.visuals.border_line.set_value(e),this.visuals.background_fill.set_value(e),n.style.position=\"absolute\",n.style.left=s+o[0]+\"px\",n.style.top=i+o[1]+\"px\",n.style.color=\"\"+this.visuals.text.text_color.value(),n.style.opacity=\"\"+this.visuals.text.text_alpha.value(),n.style.font=\"\"+this.visuals.text.font_value(),n.style.lineHeight=\"normal\",l&&(n.style.transform=`rotate(${l}rad)`),this.visuals.background_fill.doit&&(n.style.backgroundColor=\"\"+this.visuals.background_fill.color_value()),this.visuals.border_line.doit&&(n.style.borderStyle=\"\"+_,n.style.borderWidth=this.visuals.border_line.line_width.value()+\"px\",n.style.borderColor=\"\"+this.visuals.border_line.color_value()),n.textContent=t,a.display(n)}}s.TextAnnotationView=_,_.__name__=\"TextAnnotationView\";class u extends l.Annotation{constructor(e){super(e)}static init_TextAnnotation(){this.define({render_mode:[n.RenderMode,\"canvas\"]})}}s.TextAnnotation=u,u.__name__=\"TextAnnotation\",u.init_TextAnnotation()},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),o=t(161),l=t(85),a=i.__importStar(t(28)),n=t(72),r=i.__importStar(t(18));class _ extends o.TextAnnotationView{initialize(){if(super.initialize(),this.set_data(this.model.source),\"css\"==this.model.render_mode)for(let t=0,e=this._text.length;t{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.render()})):(this.connect(this.model.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.streaming,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.patching,()=>{this.set_data(this.model.source),this.plot_view.request_render()}),this.connect(this.model.source.change,()=>{this.set_data(this.model.source),this.plot_view.request_render()}))}set_data(t){super.set_data(t),this.visuals.warm_cache(t)}_map_data(){const t=this.coordinates.x_scale,e=this.coordinates.y_scale,s=null!=this.panel?this.panel:this.plot_view.frame;return[\"data\"==this.model.x_units?t.v_compute(this._x):s.xview.v_compute(this._x),\"data\"==this.model.y_units?e.v_compute(this._y):s.yview.v_compute(this._y)]}_render(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer,[s,i]=this._map_data();for(let o=0,l=this._text.length;onew l.ColumnDataSource]}),this.override({background_fill_color:null,border_line_color:null})}}s.LabelSet=h,h.__name__=\"LabelSet\",h.init_LabelSet()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),n=s.__importStar(t(28)),h=s.__importStar(t(18)),a=t(15),_=t(159),o=t(79),r=t(9),d=t(8),c=t(11);class g extends l.AnnotationView{cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.visuals.border_line.line_color.value()?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.item_change,()=>this.plot_view.request_render())}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:s,label_width:l}=this.model;this.max_label_height=r.max([_.measure_font(this.visuals.label_text.font_value()).height,s,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,r.max([n.measureText(e).width,l]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?_.measure_font(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const h=Math.max(r.max([...this.text_widths.values()]),0),a=this.model.margin,{legend_padding:g}=this,m=this.model.spacing,{label_standoff:b}=this.model;let u,f;if(\"vertical\"==this.model.orientation)u=t.length*this.max_label_height+Math.max(t.length-1,0)*m+2*g+this.title_height,f=r.max([h+i+b+2*g,this.title_width+2*g]);else{let e=2*g+Math.max(t.length-1,0)*m;for(const[,t]of this.text_widths)e+=r.max([t,l])+i+b;f=r.max([this.title_width+2*g,e]),u=this.max_label_height+this.title_height+2*g}const x=null!=this.panel?this.panel:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if(d.isString(v))switch(v){case\"top_left\":y=p.start+a,k=w.start+a;break;case\"top_center\":y=(p.end+p.start)/2-f/2,k=w.start+a;break;case\"top_right\":y=p.end-a-f,k=w.start+a;break;case\"bottom_right\":y=p.end-a-f,k=w.end-a-u;break;case\"bottom_center\":y=(p.end+p.start)/2-f/2,k=w.end-a-u;break;case\"bottom_left\":y=p.start+a,k=w.end-a-u;break;case\"center_left\":y=p.start+a,k=(w.end+w.start)/2-u/2;break;case\"center\":y=(p.end+p.start)/2-f/2,k=(w.end+w.start)/2-u/2;break;case\"center_right\":y=p.end-a-f,k=(w.end+w.start)/2-u/2}else if(d.isArray(v)&&2==v.length){const[t,e]=v;y=x.xview.compute(t),k=x.yview.compute(e)-u}else c.unreachable();return new o.BBox({left:y,top:k,width:f,height:u})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=i=l;const _=this.compute_legend_bbox(),r=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop();for(const g of c){const c=_.x+a,m=_.y+i+this.title_height;let b,u;[b,u]=r?[_.width-2*l,this.max_label_height]:[this.text_widths.get(g)+s+h,this.max_label_height];if(new o.BBox({left:c,top:m,width:b,height:u}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of d.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of d.renderers)t.muted=!t.muted}return!0}r?i+=this.max_label_height+n:a+=this.text_widths.get(g)+s+h+n}}return!1}_render(){if(0==this.model.items.length)return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this.model.title&&this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.set_value(t),t.fill(),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.stroke())}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:s}=this.model,{legend_padding:l}=this,n=this.model.spacing,{label_standoff:h}=this.model;let a=l,_=l;const o=\"vertical\"==this.model.orientation;for(const d of this.model.items){const c=d.get_labels_list_from_label_prop(),g=d.get_field_from_label_prop();if(0==c.length)continue;const m=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return r.every(d.renderers,t=>t.visible);case\"mute\":return r.every(d.renderers,t=>!t.muted)}})();for(const r of c){const c=e.x+a,b=e.y+_+this.title_height,u=c+i,f=b+s;o?_+=this.max_label_height+n:a+=this.text_widths.get(r)+i+h+n,this.visuals.label_text.set_value(t),t.fillText(r,u+h,b+this.max_label_height/2);for(const e of d.renderers){this.plot_view.renderer_views.get(e).draw_legend(t,c,u,b,f,g,r,d.index)}if(!m){let s,n;[s,n]=o?[e.width-2*l,this.max_label_height]:[this.text_widths.get(r)+i+h,this.max_label_height],t.beginPath(),t.rect(c,b,s,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(this.model.title,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=g,g.__name__=\"LegendView\";class m extends l.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new a.Signal0(this,\"item_change\")}static init_Legend(){this.prototype.default_view=g,this.mixins([[\"label_\",n.Text],[\"title_\",n.Text],[\"inactive_\",n.Fill],[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({orientation:[h.Orientation,\"vertical\"],location:[h.Any,\"top_right\"],title:[h.String],title_standoff:[h.Number,5],label_standoff:[h.Number,5],glyph_height:[h.Number,20],glyph_width:[h.Number,20],label_height:[h.Number,20],label_width:[h.Number,20],margin:[h.Number,10],padding:[h.Number,10],spacing:[h.Number,3],items:[h.Array,[]],click_policy:[h.Any,\"none\"]}),this.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=m,m.__name__=\"Legend\",m.init_Legend()},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(1),l=e(81),i=e(86),s=e(165),o=t.__importStar(e(18)),_=e(19),a=e(9);class u extends l.Model{constructor(e){super(e)}static init_LegendItem(){this.define({label:[o.StringSpec,null],renderers:[o.Array,[]],index:[o.Number,null]})}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!a.includes(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()});this._check_data_sources_on_renderers()||_.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||_.logger.error(\"Bad column name on label: \"+this.label)}get_field_from_label_prop(){const{label:e}=this;return s.isField(e)?e.field:null}get_labels_list_from_label_prop(){if(s.isValue(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof i.ColumnarDataSource){const n=r.get_column(e);return null!=n?a.uniq(Array.from(n)):[\"Invalid field\"]}}return[]}}n.LegendItem=u,u.__name__=\"LegendItem\",u.init_LegendItem()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(8);n.isValue=function(e){return t.isPlainObject(e)&&\"value\"in e},n.isField=function(e){return t.isPlainObject(e)&&\"field\"in e}},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(36),o=n.__importStar(t(28)),l=t(15),a=n.__importStar(t(18));class r extends s.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_render()),this.connect(this.model.data_update,()=>this.plot_view.request_render())}_render(){const{xs:t,ys:e}=this.model;if(t.length!=e.length)return;if(t.length<3||e.length<3)return;const{frame:i}=this.plot_view,{ctx:n}=this.layer;for(let s=0,o=t.length;sthis.plot_view.request_render())}_render(){const e=this.model.gradient,t=this.model.y_intercept;if(null==e||null==t)return;const{frame:i}=this.plot_view,n=this.coordinates.x_scale,o=this.coordinates.y_scale,s=i.bbox.top,l=s+i.bbox.height,r=(o.invert(s)-t)/e,_=(o.invert(l)-t)/e,a=n.compute(r),c=n.compute(_),{ctx:p}=this.layer;p.save(),p.beginPath(),this.visuals.line.set_value(p),p.moveTo(a,s),p.lineTo(c,l),p.stroke(),p.restore()}}i.SlopeView=r,r.__name__=\"SlopeView\";class _ extends o.Annotation{constructor(e){super(e)}static init_Slope(){this.prototype.default_view=r,this.mixins(s.Line),this.define({gradient:[l.Number,null],y_intercept:[l.Number,null]}),this.override({line_color:\"black\"})}}i.Slope=_,_.__name__=\"Slope\",_.init_Slope()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),o=e(36),s=n.__importStar(e(28)),a=n.__importStar(e(18));class l extends o.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_paint(this))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,n=this.coordinates.y_scale,o=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,a,l,r;\"width\"==this.model.dimension?(l=o(n,t.yview),a=t.bbox.left,r=t.bbox.width,s=this.model.properties.line_width.value()):(l=t.bbox.top,a=o(i,t.xview),r=this.model.properties.line_width.value(),s=t.bbox.height);const{ctx:_}=this.layer;_.save(),_.beginPath(),this.visuals.line.set_value(_),_.moveTo(a,l),\"width\"==this.model.dimension?_.lineTo(a+r,l):_.lineTo(a,l+s),_.stroke(),_.restore()}}i.SpanView=l,l.__name__=\"SpanView\";class r extends o.Annotation{constructor(e){super(e)}static init_Span(){this.prototype.default_view=l,this.mixins(s.Line),this.define({render_mode:[a.RenderMode,\"canvas\"],location:[a.Number,null],location_units:[a.SpatialUnits,\"data\"],dimension:[a.Dimension,\"width\"]}),this.override({line_color:\"black\"}),this.internal({for_hover:[a.Boolean,!1]})}}i.Span=r,r.__name__=\"Span\",r.init_Span()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=t(1),s=t(161),a=t(74),n=l.__importStar(t(28)),o=l.__importStar(t(18));class r extends s.TextAnnotationView{initialize(){super.initialize(),this.visuals.text=new a.Text(this.model)}_get_location(){const t=this.panel,e=this.model.offset;let i,l;const{bbox:s}=t;switch(t.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":l=s.top+5;break;case\"middle\":l=s.vcenter;break;case\"bottom\":l=s.bottom-5}switch(this.model.align){case\"left\":i=s.left+e;break;case\"center\":i=s.hcenter;break;case\"right\":i=s.right-e}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=s.left-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.right+5}switch(this.model.align){case\"left\":l=s.bottom-e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.top+e}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=s.right-5;break;case\"middle\":i=s.hcenter;break;case\"bottom\":i=s.left+5}switch(this.model.align){case\"left\":l=s.top+e;break;case\"center\":l=s.vcenter;break;case\"right\":l=s.bottom-e}}return[i,l]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),l=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,l)}_get_size(){const{text:t}=this.model;if(null==t||0==t.length)return{width:0,height:0};{this.visuals.text.set_value(this.layer.ctx);const{width:e,ascent:i}=this.layer.ctx.measureText(t);return{width:e,height:i*this.visuals.text.text_line_height.value()+10}}}}i.TitleView=r,r.__name__=\"TitleView\";class c extends s.TextAnnotation{constructor(t){super(t)}static init_Title(){this.prototype.default_view=r,this.mixins([[\"border_\",n.Line],[\"background_\",n.Fill]]),this.define({text:[o.String],text_font:[o.Font,\"helvetica\"],text_font_size:[o.StringSpec,\"13px\"],text_font_style:[o.FontStyle,\"bold\"],text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_line_height:[o.Number,1],vertical_align:[o.VerticalAlign,\"bottom\"],align:[o.TextAlign,\"left\"],offset:[o.Number,0]}),this.override({background_fill_color:null,border_line_color:null}),this.internal({text_align:[o.TextAlign,\"left\"],text_baseline:[o.TextBaseline,\"bottom\"]})}}i.Title=c,c.__name__=\"Title\",c.init_Title()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),l=e(36),s=e(115),a=e(72),n=e(79),r=o.__importStar(e(18));class _ extends l.AnnotationView{constructor(){super(...arguments),this.rotate=!0,this._invalidate_toolbar=!0,this._previous_bbox=new n.BBox}initialize(){super.initialize(),this.el=a.div(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){this._toolbar_view=await s.build_view(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push(e=>this._toolbar_view.set_visibility(e))}remove(){this._toolbar_view.remove(),a.remove(this.el),super.remove()}render(){this.model.visible||a.undisplay(this.el),super.render()}_render(){const{bbox:e}=this.panel;this._previous_bbox.equals(e)||(a.position(this.el,e),this._previous_bbox=e),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",this._toolbar_view.render(),a.empty(this.el),this.el.appendChild(this._toolbar_view.el),this._invalidate_toolbar=!1),a.display(this.el)}_get_size(){const{tools:e,logo:i}=this.model.toolbar;return{width:30*e.length+(null!=i?25:0),height:30}}}t.ToolbarPanelView=_,_.__name__=\"ToolbarPanelView\";class h extends l.Annotation{constructor(e){super(e)}static init_ToolbarPanel(){this.prototype.default_view=_,this.define({toolbar:[r.Instance]})}}t.ToolbarPanel=h,h.__name__=\"ToolbarPanel\",h.init_ToolbarPanel()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),l=t(36),o=t(72),n=s.__importStar(t(18)),a=t(172),h=t(173),r=s.__importDefault(t(174));class c extends l.AnnotationView{initialize(){super.initialize(),this.el=o.div({class:a.bk_tooltip}),o.undisplay(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){o.remove(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,()=>this.render()),this.connect(this.model.properties.position.change,()=>this._reposition())}styles(){return[...super.styles(),r.default]}render(){this.model.visible||o.undisplay(this.el),super.render()}_render(){const{content:t}=this.model;null!=t?(o.empty(this.el),o.classes(this.el).toggle(a.bk_tooltip_custom,this.model.custom),this.el.appendChild(t),this.model.show_arrow&&this.el.classList.add(a.bk_tooltip_arrow)):o.undisplay(this.el)}_reposition(){const{position:t}=this.model;if(null==t)return void o.undisplay(this.el);const[e,i]=t,s=(()=>{const t=this.parent.layout.bbox.relativize(),{attachment:s}=this.model;switch(s){case\"horizontal\":return eo.div()],custom:[n.Any]})}clear(){this.position=null}}i.Tooltip=d,d.__name__=\"Tooltip\",d.init_Tooltip()},\n", - " function _(o,t,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tooltip=\"bk-tooltip\",l.bk_tooltip_arrow=\"bk-tooltip-arrow\",l.bk_tooltip_custom=\"bk-tooltip-custom\",l.bk_tooltip_row_label=\"bk-tooltip-row-label\",l.bk_tooltip_row_value=\"bk-tooltip-row-value\",l.bk_tooltip_color_block=\"bk-tooltip-color-block\"},\n", - " function _(e,b,k){Object.defineProperty(k,\"__esModule\",{value:!0}),k.bk_active=\"bk-active\",k.bk_inline=\"bk-inline\",k.bk_left=\"bk-left\",k.bk_right=\"bk-right\",k.bk_above=\"bk-above\",k.bk_below=\"bk-below\",k.bk_up=\"bk-up\",k.bk_down=\"bk-down\",k.bk_side=function(e){switch(e){case\"above\":return k.bk_above;case\"below\":return k.bk_below;case\"left\":return k.bk_left;case\"right\":return k.bk_right}}},\n", - " function _(o,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root {\\n /* Same border color used everywhere */\\n /* Gray of icons */\\n}\\n.bk-root .bk-tooltip {\\n font-weight: 300;\\n font-size: 12px;\\n position: absolute;\\n padding: 5px;\\n border: 1px solid #e5e5e5;\\n color: #2f2f2f;\\n background-color: white;\\n pointer-events: none;\\n opacity: 0.95;\\n z-index: 100;\\n}\\n.bk-root .bk-tooltip > div:not(:first-child) {\\n /* gives space when multiple elements are being hovered over */\\n margin-top: 5px;\\n border-top: #e5e5e5 1px dashed;\\n}\\n.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-left::before {\\n left: -10px;\\n border-right-width: 10px;\\n border-right-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after {\\n position: absolute;\\n margin: -7px 0 0 0;\\n top: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 7px 0 7px 0;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-right::after {\\n right: -10px;\\n border-left-width: 10px;\\n border-left-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-above::before {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n top: -10px;\\n border-bottom-width: 10px;\\n border-bottom-color: #909599;\\n}\\n.bk-root .bk-tooltip.bk-below::after {\\n position: absolute;\\n margin: 0 0 0 -7px;\\n left: 50%;\\n width: 0;\\n height: 0;\\n border-style: solid;\\n border-width: 0 7px 0 7px;\\n border-color: transparent;\\n content: \" \";\\n display: block;\\n bottom: -10px;\\n border-top-width: 10px;\\n border-top-color: #909599;\\n}\\n.bk-root .bk-tooltip-row-label {\\n text-align: right;\\n color: #26aae1;\\n /* blue from toolbar highlighting */\\n}\\n.bk-root .bk-tooltip-row-value {\\n color: default;\\n /* seems to be necessary for notebook */\\n}\\n.bk-root .bk-tooltip-color-block {\\n width: 12px;\\n height: 12px;\\n margin-left: 5px;\\n margin-right: 5px;\\n outline: #dddddd solid 1px;\\n display: inline-block;\\n}\\n'},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=e(1),r=e(123),o=e(84),h=e(28),n=i.__importStar(e(18));class l extends r.UpperLowerView{connect_signals(){super.connect_signals(),this.connect(this.model.source.streaming,()=>this.set_data(this.model.source)),this.connect(this.model.source.patching,()=>this.set_data(this.model.source)),this.connect(this.model.source.change,()=>this.set_data(this.model.source))}_render(){this._map_data();const{ctx:e}=this.layer;if(this.visuals.line.doit)for(let s=0,t=this._lower_sx.length;snew o.TeeHead({level:\"underlay\",size:10})],upper_head:[n.Instance,()=>new o.TeeHead({level:\"underlay\",size:10})]}),this.override({level:\"underlay\"})}}t.Whisker=_,_.__name__=\"Whisker\",_.init_Whisker()},\n", - " function _(i,a,e){Object.defineProperty(e,\"__esModule\",{value:!0});var r=i(177);e.Axis=r.Axis;var s=i(179);e.CategoricalAxis=s.CategoricalAxis;var x=i(182);e.ContinuousAxis=x.ContinuousAxis;var A=i(183);e.DatetimeAxis=A.DatetimeAxis;var o=i(184);e.LinearAxis=o.LinearAxis;var t=i(197);e.LogAxis=t.LogAxis;var n=i(200);e.MercatorAxis=n.MercatorAxis},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(178),l=s.__importStar(t(28)),n=s.__importStar(t(18)),o=t(9),r=t(8),_=t(98),{abs:h,min:c,max:d}=Math;class m extends a.GuideRendererView{constructor(){super(...arguments),this.rotate=!0}get panel(){return this.layout}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const e={tick:this._tick_extent(),tick_label:this._tick_label_extents(),axis_label:this._axis_label_extent()},{tick_coords:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,e),this._draw_major_ticks(s,e,i),this._draw_minor_ticks(s,e,i),this._draw_major_labels(s,e,i),this._draw_axis_label(s,e,i),null===(t=this._paint)||void 0===t||t.call(this,s,e,i),s.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.plot_view.request_layout())}get_size(){if(this.model.visible&&null==this.model.fixed_location&&this.is_renderable){const t=this._get_size();return{width:0,height:Math.round(t)}}return{width:0,height:0}}_get_size(){return this._tick_extent()+this._tick_label_extent()+this._axis_label_extent()}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,l]=this.coordinates.map_to_screen(i,s),[n,o]=this.normals,[r,_]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath(),t.moveTo(Math.round(a[0]+n*r),Math.round(l[0]+o*_));for(let e=1;ec&&(c=o)}return c>0&&(c+=s),c}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.doFormat(t,this);for(let i=0;ih(n-o)?(t=d(c(a,l),n),s=c(d(a,l),o)):(t=c(a,l),s=d(a,l)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=[new Array(2),new Array(2)];return l[t][0]=Math.max(s,i.min),l[t][1]=Math.min(a,i.max),l[t][0]>l[t][1]&&(l[t][0]=l[t][1]=NaN),l[e][0]=this.loc,l[e][1]=this.loc,l}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,l=this.model.ticker.get_ticks(s,a,i,this.loc,{}),n=l.major,o=l.minor,r=[[],[]],_=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));for(let i=0;ic||(_[t].push(o[i]),_[e].push(this.loc));return{major:r,minor:_}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if(r.isNumber(t))return t;const[,e]=this.ranges;if(e instanceof _.FactorRange)return e.synthetic(t);throw new Error(\"unexpected\")}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}}i.AxisView=m,m.__name__=\"AxisView\";class b extends a.GuideRenderer{constructor(t){super(t)}static init_Axis(){this.prototype.default_view=m,this.mixins([[\"axis_\",l.Line],[\"major_tick_\",l.Line],[\"minor_tick_\",l.Line],[\"major_label_\",l.Text],[\"axis_label_\",l.Text]]),this.define({bounds:[n.Any,\"auto\"],ticker:[n.Instance],formatter:[n.Instance],axis_label:[n.String,\"\"],axis_label_standoff:[n.Int,5],major_label_standoff:[n.Int,5],major_label_orientation:[n.Any,\"horizontal\"],major_label_overrides:[n.Any,{}],major_tick_in:[n.Number,2],major_tick_out:[n.Number,6],minor_tick_in:[n.Number,0],minor_tick_out:[n.Number,4],fixed_location:[n.Any,null]}),this.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})}}i.Axis=b,b.__name__=\"Axis\",b.init_Axis()},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});const i=e(70);class n extends i.RendererView{}d.GuideRendererView=n,n.__name__=\"GuideRendererView\";class t extends i.Renderer{constructor(e){super(e)}static init_GuideRenderer(){this.override({level:\"guide\"})}}d.GuideRenderer=t,t.__name__=\"GuideRenderer\",t.init_GuideRenderer()},\n", - " function _(t,s,o){Object.defineProperty(o,\"__esModule\",{value:!0});const e=t(1),i=t(177),r=t(180),a=t(181),l=e.__importStar(t(28)),_=e.__importStar(t(18));class n extends i.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&ht[1]),s=this.model.formatter.doFormat(t,this);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=i.major.map(t=>t[2]),s=this.model.formatter.doFormat(t,this),o=i.mids.map(t=>t[1]);a.push([s,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([o,r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([i.tops,r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc,{}),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map(t=>this.loc),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map(t=>this.loc)),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map(t=>this.loc)),a}}o.CategoricalAxisView=n,n.__name__=\"CategoricalAxisView\";class h extends i.Axis{constructor(t){super(t)}static init_CategoricalAxis(){this.prototype.default_view=n,this.mixins([[\"separator_\",l.Line],[\"group_\",l.Text],[\"subgroup_\",l.Text]]),this.define({group_label_orientation:[_.Any,\"parallel\"],subgroup_label_orientation:[_.Any,\"parallel\"]}),this.override({ticker:()=>new r.CategoricalTicker,formatter:()=>new a.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})}}o.CategoricalAxis=h,h.__name__=\"CategoricalAxis\",h.init_CategoricalAxis()},\n", - " function _(t,c,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=t(129);class s extends o.Ticker{constructor(t){super(t)}get_ticks(t,c,e,o,s){return{major:this._collect(e.factors,e,t,c),minor:[],tops:this._collect(e.tops||[],e,t,c),mids:this._collect(e.mids||[],e,t,c)}}_collect(t,c,e,o){const s=[];for(const r of t){const t=c.synthetic(r);t>e&&tnew r.DatetimeTicker,formatter:()=>new a.DatetimeTickFormatter})}}i.DatetimeAxis=_,_.__name__=\"DatetimeAxis\",_.init_DatetimeAxis()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(177),n=e(182),r=e(130),a=e(126);class _ extends t.AxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class c extends n.ContinuousAxis{constructor(e){super(e)}static init_LinearAxis(){this.prototype.default_view=_,this.override({ticker:()=>new a.BasicTicker,formatter:()=>new r.BasicTickFormatter})}}s.LinearAxis=c,c.__name__=\"LinearAxis\",c.init_LinearAxis()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const r=t(1),i=r.__importDefault(t(186)),n=t(131),o=t(19),a=r.__importStar(t(18)),c=t(187),m=t(9),u=t(8);function h(t){return i.default(t,\"%Y %m %d %H %M %S\").split(/\\s+/).map(t=>parseInt(t,10))}function d(t,s){if(u.isFunction(s))return s(t);{const e=c.sprintf(\"$1%06d\",function(t){return Math.round(t/1e3%1*1e6)}(t));return-1==(s=s.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?s:i.default(t,s)}}const l=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends n.TickFormatter{constructor(t){super(t),this.strip_leading_zeros=!0}static init_DatetimeTickFormatter(){this.define({microseconds:[a.Array,[\"%fus\"]],milliseconds:[a.Array,[\"%3Nms\",\"%S.%3Ns\"]],seconds:[a.Array,[\"%Ss\"]],minsec:[a.Array,[\":%M:%S\"]],minutes:[a.Array,[\":%M\",\"%Mm\"]],hourmin:[a.Array,[\"%H:%M\"]],hours:[a.Array,[\"%Hh\",\"%H:%M\"]],days:[a.Array,[\"%m/%d\",\"%a%d\"]],months:[a.Array,[\"%m/%Y\",\"%b %Y\"]],years:[a.Array,[\"%Y\"]]})}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const t=+i.default(new Date),s=function(s){const e=s.map(s=>d(t,s).length),r=m.sort_by(m.zip(e,s),([t])=>t);return m.unzip(r)};this._width_formats={microseconds:s(this.microseconds),milliseconds:s(this.milliseconds),seconds:s(this.seconds),minsec:s(this.minsec),minutes:s(this.minutes),hourmin:s(this.hourmin),hours:s(this.hours),days:s(this.days),months:s(this.months),years:s(this.years)}}_get_resolution_str(t,s){const e=1.1*t;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return s>=60?\"minsec\":\"seconds\";case!(e<3600):return s>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(t,s){if(0==t.length)return[];const e=Math.abs(t[t.length-1]-t[0])/1e3,r=e/(t.length-1),i=this._get_resolution_str(r,e),[,[n]]=this._width_formats[i],a=[],c=l.indexOf(i),m={};for(const t of l)m[t]=0;m.seconds=5,m.minsec=4,m.minutes=4,m.hourmin=3,m.hours=3;for(const s of t){let t,e;try{e=h(s),t=d(s,n)}catch(t){o.logger.warn(\"unable to format tick for timestamp value \"+s),o.logger.warn(\" - \"+t),a.push(\"ERR\");continue}let r=!1,u=c;for(;0==e[m[l[u]]];){let n;if(u+=1,u==l.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!r){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){n=this._width_formats[l[c-1]][1][0],t=d(s,n);break}r=!0}n=this._width_formats[l[u]][1][0],t=d(s,n)}if(this.strip_leading_zeros){let s=t.replace(/^0+/g,\"\");s!=t&&isNaN(parseInt(s))&&(s=\"0\"+s),a.push(s)}else a.push(t)}return a}}e.DatetimeTickFormatter=_,_.__name__=\"DatetimeTickFormatter\",_.init_DatetimeTickFormatter()},\n", - " function _(e,t,n){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", - " function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=r(1),i=n.__importStar(r(188)),u=r(189),a=n.__importDefault(r(186)),f=r(29),o=r(8);function l(r,...e){return u.sprintf(r,...e)}function s(r,e,t){if(o.isNumber(r)){return l((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return\"\"+r}function c(r,e,n){if(null==e)return s;if(null!=n&&r in n){const e=n[r];if(o.isString(e)){if(e in t.DEFAULT_FORMATTERS)return t.DEFAULT_FORMATTERS[e];throw new Error(`Unknown tooltip field formatter type '${e}'`)}return function(r,t,n){return e.format(r,t,n)}}return t.DEFAULT_FORMATTERS.numeral}function m(r,e,t,n){if(\"$\"==r[0]){return function(r,e){if(r in e)return e[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),n)}return function(r,e,t){const n=e.get_column(r);if(null==n)return null;if(o.isNumber(t))return n[t];const i=n[t.index];if(o.isTypedArray(i)||o.isArray(i)){if(o.isArray(i[0])){return i[t.dim2][t.dim1]}return i[t.flat_index]}return i}(r.substring(1).replace(/[{}]/g,\"\"),e,t)}t.DEFAULT_FORMATTERS={numeral:(r,e,t)=>i.format(r,e),datetime:(r,e,t)=>a.default(r,e),printf:(r,e,t)=>l(e,r)},t.sprintf=l,t.basic_formatter=s,t.get_formatter=c,t.get_value=m,t.replace_placeholders=function(r,e,t,n,i={}){let u,a;if(o.isString(r)?(u=r,a=!1):(u=r.html,a=!0),u=u.replace(/@\\$name/g,r=>`@{${i.name}}`),u=u.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,(r,u,o)=>{const l=m(u,e,t,i);if(null==l)return\"\"+f.escape(\"???\");if(\"safe\"==o)return a=!0,\"\"+l;const s=c(u,o,n);return\"\"+f.escape(s(l,o,i))}),a){return[...(new DOMParser).parseFromString(u,\"text/html\").body.childNodes]}return u}},\n", - " function _(e,n,t){\n", - " /*!\n", - " * numbro.js\n", - " * version : 1.6.2\n", - " * author : Företagsplatsen AB\n", - " * license : MIT\n", - " * http://www.foretagsplatsen.se\n", - " */\n", - " var r,i={},a=i,o=\"en-US\",l=null,u=\"0,0\";void 0!==n&&n.exports;function c(e){this._value=e}function s(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+s(i-r.length),n>0&&(a+=\".\"+s(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function d(e,n,t){return n.indexOf(\"$\")>-1?function(e,n,t){var r,a,l=n,u=l.indexOf(\"$\"),c=l.indexOf(\"(\"),s=l.indexOf(\"+\"),f=l.indexOf(\"-\"),d=\"\",p=\"\";-1===l.indexOf(\"$\")?\"infix\"===i[o].currency.position?(p=i[o].currency.symbol,i[o].currency.spaceSeparated&&(p=\" \"+p+\" \")):i[o].currency.spaceSeparated&&(d=\" \"):l.indexOf(\" $\")>-1?(d=\" \",l=l.replace(\" $\",\"\")):l.indexOf(\"$ \")>-1?(d=\" \",l=l.replace(\"$ \",\"\")):l=l.replace(\"$\",\"\");if(a=h(e,l,t,p),-1===n.indexOf(\"$\"))switch(i[o].currency.position){case\"postfix\":a.indexOf(\")\")>-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;break;case\"infix\":break;case\"prefix\":a.indexOf(\"(\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=Math.max(c,f)+1,a.splice(r,0,i[o].currency.symbol+d),a=a.join(\"\")):a=i[o].currency.symbol+d+a;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else u<=1?a.indexOf(\"(\")>-1||a.indexOf(\"+\")>-1||a.indexOf(\"-\")>-1?(a=a.split(\"\"),r=1,(u-1?((a=a.split(\"\")).splice(-1,0,d+i[o].currency.symbol),a=a.join(\"\")):a=a+d+i[o].currency.symbol;return a}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=h(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):h(e,n,t)}function h(e,n,t,r){var a,u,c,s,d,h,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==l)return l;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(d=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(h=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,d)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===h?0:3*~~(h/3)-h)<0?M+3:M,a=0;a=Math.pow(10,12)&&!D||j?(k+=i[o].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=i[o].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=i[o].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=i[o].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(u=Math.pow(1024,s),c=Math.pow(1024,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(u=Math.pow(1e3,s),c=Math.pow(1e3,s+1),e>=u&&e0&&(e/=u);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),i[o].ordinal&&(L+=i[o].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?f(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?f(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):f(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:i[o].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=f(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+i[o].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,i){return null!=t&&t!==r.culture()&&r.setCulture(t),d(Number(e),null!=n?n:u,null==i?Math.round:i)}}},\n", - " function _(e,n,t){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", - " function _(e,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(9),a=e(127),s=e(191),r=e(192),c=e(195),_=e(196),m=e(194);class k extends s.CompositeTicker{constructor(e){super(e)}static init_DatetimeTicker(){this.override({num_minor_ticks:0,tickers:()=>[new a.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*m.ONE_MILLI,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:m.ONE_SECOND,max_interval:30*m.ONE_MINUTE,num_minor_ticks:0}),new a.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:m.ONE_HOUR,max_interval:12*m.ONE_HOUR,num_minor_ticks:0}),new r.DaysTicker({days:t.range(1,32)}),new r.DaysTicker({days:t.range(1,31,3)}),new r.DaysTicker({days:[1,8,15,22]}),new r.DaysTicker({days:[1,15]}),new c.MonthsTicker({months:t.range(0,12,1)}),new c.MonthsTicker({months:t.range(0,12,2)}),new c.MonthsTicker({months:t.range(0,12,4)}),new c.MonthsTicker({months:t.range(0,12,6)}),new _.YearsTicker({})]})}}n.DatetimeTicker=k,k.__name__=\"DatetimeTicker\",k.init_DatetimeTicker()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=t(1),s=t(128),n=r.__importStar(t(18)),_=t(9);class a extends s.ContinuousTicker{constructor(t){super(t)}static init_CompositeTicker(){this.define({tickers:[n.Array,[]]})}get min_intervals(){return this.tickers.map(t=>t.get_min_interval())}get max_intervals(){return this.tickers.map(t=>t.get_max_interval())}get min_interval(){return this.min_intervals[0]}get max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[_.sorted_index(this.min_intervals,s)-1,_.sorted_index(this.max_intervals,s)],a=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map(t=>Math.abs(i-r/t));let c;if(_.is_empty(a.filter(t=>!isNaN(t))))c=this.tickers[0];else{const t=n[_.argmin(a)];c=this.tickers[t]}return c}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=a,a.__name__=\"CompositeTicker\",a.init_CompositeTicker()},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=t(193),a=t(194),o=i.__importStar(t(18)),r=t(9);class _ extends s.SingleIntervalTicker{constructor(t){super(t)}static init_DaysTicker(){this.define({days:[o.Array,[]]}),this.override({num_minor_ticks:0})}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*a.ONE_DAY:this.interval=31*a.ONE_DAY}get_ticks_no_defaults(t,e,n,i){const s=function(t,e){const n=a.last_month_no_later_than(new Date(t)),i=a.last_month_no_later_than(new Date(e));i.setUTCMonth(i.getUTCMonth()+1);const s=[],o=n;for(;s.push(a.copy_date(o)),o.setUTCMonth(o.getUTCMonth()+1),!(o>i););return s}(t,e),o=this.days,_=this.interval;return{major:r.concat(s.map(t=>((t,e)=>{const n=t.getUTCMonth(),i=[];for(const s of o){const o=a.copy_date(t);o.setUTCDate(s);new Date(o.getTime()+e/2).getUTCMonth()==n&&i.push(o)}return i})(t,_))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.DaysTicker=_,_.__name__=\"DaysTicker\",_.init_DaysTicker()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),r=e(128),l=n.__importStar(e(18));class a extends r.ContinuousTicker{constructor(e){super(e)}static init_SingleIntervalTicker(){this.define({interval:[l.Number]})}get_interval(e,t,i){return this.interval}get min_interval(){return this.interval}get max_interval(){return this.interval}}i.SingleIntervalTicker=a,a.__name__=\"SingleIntervalTicker\",a.init_SingleIntervalTicker()},\n", - " function _(t,e,n){function _(t){return new Date(t.getTime())}function O(t){const e=_(t);return e.setUTCDate(1),e.setUTCHours(0),e.setUTCMinutes(0),e.setUTCSeconds(0),e.setUTCMilliseconds(0),e}Object.defineProperty(n,\"__esModule\",{value:!0}),n.ONE_MILLI=1,n.ONE_SECOND=1e3,n.ONE_MINUTE=60*n.ONE_SECOND,n.ONE_HOUR=60*n.ONE_MINUTE,n.ONE_DAY=24*n.ONE_HOUR,n.ONE_MONTH=30*n.ONE_DAY,n.ONE_YEAR=365*n.ONE_DAY,n.copy_date=_,n.last_month_no_later_than=O,n.last_year_no_later_than=function(t){const e=O(t);return e.setUTCMonth(0),e}},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(193),s=t(194),a=r.__importStar(t(18)),o=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}static init_MonthsTicker(){this.define({months:[a.Array,[]]})}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*s.ONE_MONTH:this.interval=12*s.ONE_MONTH}get_ticks_no_defaults(t,e,n,r){const i=function(t,e){const n=s.last_year_no_later_than(new Date(t)),r=s.last_year_no_later_than(new Date(e));r.setUTCFullYear(r.getUTCFullYear()+1);const i=[],a=n;for(;i.push(s.copy_date(a)),a.setUTCFullYear(a.getUTCFullYear()+1),!(a>r););return i}(t,e),a=this.months;return{major:o.concat(i.map(t=>a.map(e=>{const n=s.copy_date(t);return n.setUTCMonth(e),n}))).map(t=>t.getTime()).filter(n=>t<=n&&n<=e),minor:[]}}}n.MonthsTicker=_,_.__name__=\"MonthsTicker\",_.init_MonthsTicker()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(126),r=e(193),n=e(194);class _ extends r.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=n.ONE_YEAR,this.basic_ticker=new i.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=n.last_year_no_later_than(new Date(e)).getUTCFullYear(),_=n.last_year_no_later_than(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,_,a,i).major.map(e=>Date.UTC(e,0,1)).filter(a=>e<=a&&a<=t),minor:[]}}}a.YearsTicker=_,_.__name__=\"YearsTicker\"},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(177),o=e(182),n=e(198),r=e(199);class _ extends s.AxisView{}t.LogAxisView=_,_.__name__=\"LogAxisView\";class c extends o.ContinuousAxis{constructor(e){super(e)}static init_LogAxis(){this.prototype.default_view=_,this.override({ticker:()=>new r.LogTicker,formatter:()=>new n.LogTickFormatter})}}t.LogAxis=c,c.__name__=\"LogAxis\",c.init_LogAxis()},\n", - " function _(t,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=t(1),o=t(131),a=t(130),n=i.__importStar(t(18));class c extends o.TickFormatter{constructor(t){super(t)}static init_LogTickFormatter(){this.define({ticker:[n.Instance,null]})}initialize(){super.initialize(),this.basic_formatter=new a.BasicTickFormatter}doFormat(t,e){if(0==t.length)return[];const r=null!=this.ticker?this.ticker.base:10;let i=!1;const o=new Array(t.length);for(let e=0,a=t.length;e0&&o[e]==o[e-1]){i=!0;break}return i?this.basic_formatter.doFormat(t,e):o}}r.LogTickFormatter=c,c.__name__=\"LogTickFormatter\",c.init_LogTickFormatter()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(127),s=t(9);class n extends i.AdaptiveTicker{constructor(t){super(t)}static init_LogTicker(){this.override({mantissas:[1,5]})}get_ticks_no_defaults(t,o,e,i){const n=this.num_minor_ticks,r=[],c=this.base,a=Math.log(t)/Math.log(c),f=Math.log(o)/Math.log(c),l=f-a;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,i),c=Math.floor(t/e),a=Math.ceil(o/e);if(h=s.range(c,a+1).filter(t=>0!=t).map(t=>t*e).filter(e=>t<=e&&e<=o),n>0&&h.length>0){const t=e/n,o=s.range(0,n).map(o=>o*t);for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*a),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=s.range(t-1,o+1,e).map(t=>c**t),n>0&&h.length>0){const t=c**e/n,o=s.range(1,n+1).map(o=>o*t);for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter(e=>t<=e&&e<=o),minor:r.filter(e=>t<=e&&e<=o)}}}e.LogTicker=n,n.__name__=\"LogTicker\",n.init_LogTicker()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(177),s=e(184),o=e(201),a=e(202);class c extends i.AxisView{}r.MercatorAxisView=c,c.__name__=\"MercatorAxisView\";class n extends s.LinearAxis{constructor(e){super(e)}static init_MercatorAxis(){this.prototype.default_view=c,this.override({ticker:()=>new a.MercatorTicker({dimension:\"lat\"}),formatter:()=>new o.MercatorTickFormatter({dimension:\"lat\"})})}}r.MercatorAxis=n,n.__name__=\"MercatorAxis\",n.init_MercatorAxis()},\n", - " function _(r,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const o=r(1),n=r(130),i=o.__importStar(r(18)),c=r(37);class a extends n.BasicTickFormatter{constructor(r){super(r)}static init_MercatorTickFormatter(){this.define({dimension:[i.LatLon]})}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n{const n=s.replace_placeholders(this.url,t,e);if(!r.isString(n))throw new Error(\"HTML output is not supported in this context\");this.same_tab?window.location.href=n:window.open(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=a,a.__name__=\"OpenURL\",a.init_OpenURL()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var n=a(77);r.Canvas=n.Canvas;var s=a(208);r.CartesianFrame=s.CartesianFrame},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const a=e(209),_=e(146),n=e(157),r=e(158),i=e(210),g=e(98),c=e(212),o=e(13),l=e(11);class h extends c.LayoutItem{constructor(e,t,s,a,_={},n={}){super(),this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=n,l.assert(null==e.source_range&&null==e.target_range),l.assert(null==t.source_range&&null==t.target_range),this._configure_scales()}_get_ranges(e,t){return new Map(o.entries(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s){const c=new Map;for(const[o,l]of t){if((l instanceof i.DataRange1d||l instanceof r.Range1d)&&!(e instanceof _.ContinuousScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);if(l instanceof g.FactorRange&&!(e instanceof a.CategoricalScale))throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const t=e.clone();t.setv({source_range:l,target_range:s}),c.set(o,t)}return c}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new r.Range1d({start:e.left,end:e.right}),this._y_target=new r.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}_set_geometry(e,t){super._set_geometry(e,t),this._update_scales()}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return o.to_object(this.x_scales)}get yscales(){return o.to_object(this.y_scales)}}s.CartesianFrame=h,h.__name__=\"CartesianFrame\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(147);class _ extends n.Scale{constructor(e){super(e)}compute(e){return super._linear_compute(this.source_range.synthetic(e))}v_compute(e){return super._linear_v_compute(this.source_range.v_synthetic(e))}invert(e){return this._linear_invert(e)}v_invert(e){return this._linear_v_invert(e)}}t.CategoricalScale=_,_.__name__=\"CategoricalScale\"},\n", - " function _(t,i,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=t(1),a=t(211),s=t(90),l=t(19),_=e.__importStar(t(18)),o=e.__importStar(t(79)),r=t(9);class h extends a.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}static init_DataRange1d(){this.define({start:[_.Number],end:[_.Number],range_padding:[_.Number,.1],range_padding_units:[_.PaddingUnits,\"percent\"],flipped:[_.Boolean,!1],follow:[_.StartEnd],follow_interval:[_.Number],default_span:[_.Number,2],only_visible:[_.Boolean,!1]}),this.internal({scale_hint:[_.String,\"auto\"]})}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const t=this.names;let i=this.renderers;if(0==i.length)for(const t of this.plots){const n=t.renderers.filter(t=>t instanceof s.GlyphRenderer);i=i.concat(n)}t.length>0&&(i=i.filter(i=>r.includes(t,i.name))),l.logger.debug(`computed ${i.length} renderers for ${this}`);for(const t of i)l.logger.trace(\" - \"+t);return i}_compute_plot_bounds(t,i){let n=o.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=o.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=o.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return e_&&(\"start\"==this.follow?a=e+s*_:\"end\"==this.follow&&(e=a-s*_)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.values(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);const[h,d]=[this.start,this.end];if(o!=h||r!=d){const t={};o!=h&&(t.start=o),r!=d&&(t.end=r),this.setv(t)}\"auto\"==this.bounds&&this.setv({bounds:[o,r]},{silent:!0}),this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=h,h.__name__=\"DataRange1d\",h.init_DataRange1d()},\n", - " function _(e,a,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),r=e(99),s=n.__importStar(e(18));class _ extends r.Range{constructor(e){super(e)}static init_DataRange(){this.define({names:[s.Array,[]],renderers:[s.Array,[]]})}}t.DataRange=_,_.__name__=\"DataRange\",_.init_DataRange()},\n", - " function _(a,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});var e=a(213);t.Sizeable=e.Sizeable,t.SizingPolicy=e.SizingPolicy;var i=a(214);t.Layoutable=i.Layoutable,t.LayoutItem=i.LayoutItem;var n=a(215);t.HStack=n.HStack,t.VStack=n.VStack,t.AnchorLayout=n.AnchorLayout;var r=a(216);t.Grid=r.Grid,t.Row=r.Row,t.Column=r.Column;var c=a(217);t.ContentBox=c.ContentBox,t.VariadicBox=c.VariadicBox},\n", - " function _(t,h,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(21),{min:d,max:n}=Math;class w{constructor(t={}){this.width=null!=t.width?t.width:0,this.height=null!=t.height?t.height:0}bounded_to({width:t,height:h}){return new w({width:this.width==1/0&&null!=t?t:this.width,height:this.height==1/0&&null!=h?h:this.height})}expanded_to({width:t,height:h}){return new w({width:t!=1/0?n(this.width,t):this.width,height:h!=1/0?n(this.height,h):this.height})}expand_to({width:t,height:h}){this.width=n(this.width,t),this.height=n(this.height,h)}narrowed_to({width:t,height:h}){return new w({width:d(this.width,t),height:d(this.height,h)})}narrow_to({width:t,height:h}){this.width=d(this.width,t),this.height=d(this.height,h)}grow_by({left:t,right:h,top:i,bottom:e}){const d=this.width+t+h,n=this.height+i+e;return new w({width:d,height:n})}shrink_by({left:t,right:h,top:i,bottom:e}){const d=n(this.width-t-h,0),s=n(this.height-i-e,0);return new w({width:d,height:s})}map(t,h){return new w({width:t(this.width),height:(null!=h?h:t)(this.height)})}}i.Sizeable=w,w.__name__=\"Sizeable\",i.SizingPolicy=e.Enum(\"fixed\",\"fit\",\"min\",\"max\")},\n", - " function _(i,t,h){Object.defineProperty(h,\"__esModule\",{value:!0});const e=i(213),s=i(79),{min:n,max:g,round:a}=Math;class l{constructor(){this._bbox=new s.BBox,this._inner_bbox=new s.BBox}get bbox(){return this._bbox}get inner_bbox(){return this._inner_bbox}get sizing(){return this._sizing}set_sizing(i){const t=i.width_policy||\"fit\",h=i.width,e=null!=i.min_width?i.min_width:0,s=null!=i.max_width?i.max_width:1/0,n=i.height_policy||\"fit\",g=i.height,a=null!=i.min_height?i.min_height:0,l=null!=i.max_height?i.max_height:1/0,_=i.aspect,d=i.margin||{top:0,right:0,bottom:0,left:0},r=!1!==i.visible,w=i.halign||\"start\",o=i.valign||\"start\";this._sizing={width_policy:t,min_width:e,width:h,max_width:s,height_policy:n,min_height:a,height:g,max_height:l,aspect:_,margin:d,visible:r,halign:w,valign:o,size:{width:h,height:g},min_size:{width:e,height:a},max_size:{width:s,height:l}},this._init()}_init(){}_set_geometry(i,t){this._bbox=i,this._inner_bbox=t}set_geometry(i,t){this._set_geometry(i,t||i)}is_width_expanding(){return\"max\"==this.sizing.width_policy}is_height_expanding(){return\"max\"==this.sizing.height_policy}apply_aspect(i,{width:t,height:h}){const{aspect:e}=this.sizing;if(null!=e){const{width_policy:s,height_policy:n}=this.sizing,g=(i,t)=>{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=s&&\"fixed\"!=n)if(s==n){const s=t,n=a(t/e),g=a(h*e),l=h;Math.abs(i.width-s)+Math.abs(i.height-n)<=Math.abs(i.width-g)+Math.abs(i.height-l)?(t=s,h=n):(t=g,h=l)}else g(s,n)?h=a(t/e):t=a(h*e);else\"fixed\"==s?h=a(t/e):\"fixed\"==n&&(t=a(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,s=new e.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(s),g=this.clip_size(n),a=t(g.width),l=h(g.height),_=this.apply_aspect(s,{width:a,height:l});return Object.assign(Object.assign({},n),_)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new s.BBox({left:0,top:0,width:h,height:e});let g=void 0;if(null!=t.inner){const{left:i,top:n,right:a,bottom:l}=t.inner;g=new s.BBox({left:i,top:n,right:h-a,bottom:e-l})}this.set_geometry(n,g)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_width(i){return g(this.sizing.min_width,n(i,this.sizing.max_width))}clip_height(i){return g(this.sizing.min_height,n(i,this.sizing.max_height))}clip_size({width:i,height:t}){return{width:this.clip_width(i),height:this.clip_height(t)}}}h.Layoutable=l,l.__name__=\"Layoutable\";class _ extends l{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;let e,s;if(i.width==1/0)e=null!=this.sizing.width?this.sizing.width:0;else switch(t){case\"fixed\":e=null!=this.sizing.width?this.sizing.width:0;break;case\"min\":e=null!=this.sizing.width?n(i.width,this.sizing.width):0;break;case\"fit\":e=null!=this.sizing.width?n(i.width,this.sizing.width):i.width;break;case\"max\":e=null!=this.sizing.width?g(i.width,this.sizing.width):i.width}if(i.height==1/0)s=null!=this.sizing.height?this.sizing.height:0;else switch(h){case\"fixed\":s=null!=this.sizing.height?this.sizing.height:0;break;case\"min\":s=null!=this.sizing.height?n(i.height,this.sizing.height):0;break;case\"fit\":s=null!=this.sizing.height?n(i.height,this.sizing.height):i.height;break;case\"max\":s=null!=this.sizing.height?g(i.height,this.sizing.height):i.height}return{width:e,height:s}}}h.LayoutItem=_,_.__name__=\"LayoutItem\";class d extends l{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=d,d.__name__=\"ContentLayoutable\"},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const o=t(214),r=t(79);class i extends o.Layoutable{constructor(){super(...arguments),this.children=[]}}h.Stack=i,i.__name__=\"Stack\";class s extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e+=o.width,h=Math.max(h,o.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{top:h,bottom:o}=t;let{left:i}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({left:i,width:e,top:h,bottom:o})),i+=e}}}h.HStack=s,s.__name__=\"HStack\";class n extends i{_measure(t){let e=0,h=0;for(const t of this.children){const o=t.measure({width:0,height:0});e=Math.max(e,o.width),h+=o.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const{left:h,right:o}=t;let{top:i}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new r.BBox({top:i,height:e,left:h,right:o})),i+=e}}}h.VStack=n,n.__name__=\"VStack\";class c extends o.Layoutable{constructor(){super(...arguments),this.children=[]}_measure(t){let e=0,h=0;for(const{layout:o}of this.children){const r=o.measure(t);e=Math.max(e,r.width),h=Math.max(h,r.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);for(const{layout:e,anchor:h,margin:o}of this.children){const{left:i,right:s,top:n,bottom:c,hcenter:a,vcenter:_}=t,{width:g,height:d}=e.measure(t);let m;switch(h){case\"top_left\":m=new r.BBox({left:i+o,top:n+o,width:g,height:d});break;case\"top_center\":m=new r.BBox({hcenter:a,top:n+o,width:g,height:d});break;case\"top_right\":m=new r.BBox({right:s-o,top:n+o,width:g,height:d});break;case\"bottom_right\":m=new r.BBox({right:s-o,bottom:c-o,width:g,height:d});break;case\"bottom_center\":m=new r.BBox({hcenter:a,bottom:c-o,width:g,height:d});break;case\"bottom_left\":m=new r.BBox({left:i+o,bottom:c-o,width:g,height:d});break;case\"center_left\":m=new r.BBox({left:i+o,vcenter:_,width:g,height:d});break;case\"center\":m=new r.BBox({hcenter:a,vcenter:_,width:g,height:d});break;case\"center_right\":m=new r.BBox({right:s-o,vcenter:_,width:g,height:d})}e.set_geometry(m)}}}h.AnchorLayout=c,c.__name__=\"AnchorLayout\"},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const e=t(213),o=t(214),n=t(8),r=t(79),h=t(9),{max:l,round:c}=Math;class a{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}a.__name__=\"DefaultMap\";class g{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=l(this._nrows,s+1),this._ncols=l(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter(({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1).map(({data:t})=>t)}row(t){return this._items.filter(({span:i})=>i.r0<=t&&t<=i.r1).map(({data:t})=>t)}col(t){return this._items.filter(({span:i})=>i.c0<=t&&t<=i.c1).map(({data:t})=>t)}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new g;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}g.__name__=\"Container\";class p extends o.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0,this.absolute=!1}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return h.some(t,t=>\"max\"==t.policy)}_init(){super._init();const t=new g;for(const{layout:i,row:s,col:e,row_span:o,col_span:n}of this.items)if(i.sizing.visible){const r=s,h=e,l=s+(null!=o?o:1)-1,c=e+(null!=n?n:1)-1;t.add({r0:r,c0:h,r1:l,c1:c},i)}const{nrows:i,ncols:s}=t,e=new Array(i);for(let s=0;s{const t=n.isPlainObject(this.rows)?this.rows[s]||this.rows[\"*\"]:this.rows;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",height:t}:n.isString(t)?{policy:t}:t})(),o=i.align||\"auto\";if(\"fixed\"==i.policy)e[s]={policy:\"fixed\",height:i.height,align:o};else if(\"min\"==i.policy)e[s]={policy:\"min\",align:o};else if(\"fit\"==i.policy||\"max\"==i.policy)e[s]={policy:i.policy,flex:i.flex||1,align:o};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");h.some(t.row(s),t=>t.is_height_expanding())?e[s]={policy:\"max\",flex:1,align:o}:e[s]={policy:\"min\",align:o}}}const o=new Array(s);for(let i=0;i{const t=n.isPlainObject(this.cols)?this.cols[i]||this.cols[\"*\"]:this.cols;return null==t?{policy:\"auto\"}:n.isNumber(t)?{policy:\"fixed\",width:t}:n.isString(t)?{policy:t}:t})(),e=s.align||\"auto\";if(\"fixed\"==s.policy)o[i]={policy:\"fixed\",width:s.width,align:e};else if(\"min\"==s.policy)o[i]={policy:\"min\",align:e};else if(\"fit\"==s.policy||\"max\"==s.policy)o[i]={policy:s.policy,flex:s.flex||1,align:e};else{if(\"auto\"!=s.policy)throw new Error(\"unrechable\");h.some(t.col(i),t=>t.is_width_expanding())?o[i]={policy:\"max\",flex:1,align:e}:o[i]={policy:\"min\",align:e}}}const[r,l]=n.isNumber(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:t,nrows:i,ncols:s,rows:e,cols:o,rspacing:r,cspacing:l}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:h.sum(t)+(s-1)*o,width:h.sum(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:o,rows:n,cols:r,rspacing:h,cspacing:a}=this._state,p=new Array(s);for(let t=0;t{const{r0:o,c0:g,r1:d,c1:w}=i,u=(d-o)*h,m=(w-g)*a;let y=0;for(let i=o;i<=d;i++)y+=t(i,g).height;y+=u;let x=0;for(let i=g;i<=w;i++)x+=t(o,i).width;x+=m;const b=s.measure({width:x,height:y});f.add(i,{layout:s,size_hint:b});const z=new e.Sizeable(b).grow_by(s.sizing.margin);z.height-=u,z.width-=m;const j=[];for(let t=o;t<=d;t++){const i=n[t];\"fixed\"==i.policy?z.height-=i.height:j.push(t)}if(z.height>0){const t=c(z.height/j.length);for(const i of j)p[i]=l(p[i],t)}const O=[];for(let t=g;t<=w;t++){const i=r[t];\"fixed\"==i.policy?z.width-=i.width:O.push(t)}if(z.width>0){const t=c(z.width/O.length);for(const i of O)_[i]=l(_[i],t)}});return{size:this._measure_totals(p,_),row_heights:p,col_widths:_,size_hints:f}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:r}=this._state,h=this._measure_cells((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}});let a;a=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:h.size.height;let g,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}g=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:h.size.width;let _=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:f,col_widths:d,size_hints:w}=this._measure_cells((t,i)=>({width:h.col_widths[i],height:h.row_heights[t]}));return{size:this._measure_totals(f,d),row_heights:f,col_widths:d,size_hints:w}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:h,col_widths:g,size_hints:p}=this._measure_grid(t),_=this._state.rows.map((t,i)=>Object.assign(Object.assign({},t),{top:0,height:h[i],get bottom(){return this.top+this.height}})),f=this._state.cols.map((t,i)=>Object.assign(Object.assign({},t),{left:0,width:g[i],get right(){return this.left+this.width}})),d=p.map((t,i)=>Object.assign(Object.assign({},i),{outer:new r.BBox,inner:new r.BBox}));for(let i=0,e=this.absolute?t.top:0;i{const{layout:l,size_hint:a}=h,{sizing:g}=l,{width:p,height:d}=a,w=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=f[e].width;return s}(i,e),u=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=_[e].height;return s}(t,s),m=i==e&&\"auto\"!=f[i].align?f[i].align:g.halign,y=t==s&&\"auto\"!=_[t].align?_[t].align:g.valign;let x=f[i].left;\"start\"==m?x+=g.margin.left:\"center\"==m?x+=c((w-p)/2):\"end\"==m&&(x+=w-g.margin.right-p);let b=_[t].top;\"start\"==y?b+=g.margin.top:\"center\"==y?b+=c((u-d)/2):\"end\"==y&&(b+=u-g.margin.bottom-d),h.outer=new r.BBox({left:x,top:b,width:p,height:d})});const w=_.map(()=>({start:new a(()=>0),end:new a(()=>0)})),u=f.map(()=>({start:new a(()=>0),end:new a(()=>0)}));d.foreach(({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:r}=o;null!=r&&(w[t].start.apply(n.top,t=>l(t,r.top)),w[s].end.apply(_[s].bottom-n.bottom,t=>l(t,r.bottom)),u[i].start.apply(n.left,t=>l(t,r.left)),u[e].end.apply(f[e].right-n.right,t=>l(t,r.right)))}),d.foreach(({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:h}=o;function l({left:t,right:i,top:s,bottom:e}){const o=h.width-t-i,n=h.height-s-e;return new r.BBox({left:t,top:s,width:o,height:n})}if(null!=n.inner){let r=l(n.inner);if(!1!==n.align){const o=w[t].start.get(h.top),n=w[s].end.get(_[s].bottom-h.bottom),c=u[i].start.get(h.left),a=u[e].end.get(f[e].right-h.right);try{r=l({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=r}else o.inner=h}),d.foreach((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)})}}s.Grid=p,p.__name__=\"Grid\";class _ extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:0,col:i})),this.rows=\"fit\"}}s.Row=_,_.__name__=\"Row\";class f extends p{constructor(t){super(),this.items=t.map((t,i)=>({layout:t,row:i,col:0})),this.cols=\"fit\"}}s.Column=f,f.__name__=\"Column\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(214),i=e(213),a=e(72);class c extends n.ContentLayoutable{constructor(e){super(),this.content_size=a.unsized(e,()=>new i.Sizeable(a.size(e)))}_content_size(){return this.content_size}}s.ContentBox=c,c.__name__=\"ContentBox\";class o extends n.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new i.Sizeable(e).bounded_to(this.sizing.size);return a.sized(this.el,t,()=>{const e=new i.Sizeable(a.content_size(this.el)),{border:t,padding:s}=a.extents(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)})}}s.VariadicBox=o,o.__name__=\"VariadicBox\";class r extends o{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=r,r.__name__=\"CachedVariadicBox\"},\n", - " function _(e,r,u){Object.defineProperty(u,\"__esModule\",{value:!0});var a=e(219);u.Expression=a.Expression;var n=e(220);u.Stack=n.Stack;var o=e(221);u.CumSum=o.CumSum},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(81);class i extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._connected=new Set,this._result=new Map}v_compute(e){this._connected.has(e)||(this.connect(e.change,()=>this._result.delete(e)),this.connect(e.patching,()=>this._result.delete(e)),this.connect(e.streaming,()=>this._result.delete(e)),this._connected.add(e));let t=this._result.get(e);return null==t&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=i,i.__name__=\"Expression\"},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),i=t(219),s=t(24),o=r.__importStar(t(18));class a extends i.Expression{constructor(t){super(t)}static init_Stack(){this.define({fields:[o.Array,[]]})}_v_compute(t){var e;const n=null!==(e=t.get_length())&&void 0!==e?e:0,r=new s.NumberArray(n);for(const e of this.fields){const i=t.data[e];if(null!=i)for(let t=0,e=Math.min(n,i.length);tn(t,e,r,...this.values))}}n.FuncTickFormatter=u,u.__name__=\"FuncTickFormatter\",u.init_FuncTickFormatter()},\n", - " function _(r,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=r(1),o=e.__importStar(r(188)),a=r(131),i=e.__importStar(r(18));class u extends a.TickFormatter{constructor(r){super(r)}static init_NumeralTickFormatter(){this.define({format:[i.String,\"0,0\"],language:[i.String,\"en\"],rounding:[i.RoundingFunction,\"round\"]})}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,t){const{format:n,language:e,_rounding_fn:a}=this;return r.map(r=>o.format(r,n,e,a))}}n.NumeralTickFormatter=u,u.__name__=\"NumeralTickFormatter\",u.init_NumeralTickFormatter()},\n", - " function _(t,r,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),n=t(131),o=t(187),a=e.__importStar(t(18));class c extends n.TickFormatter{constructor(t){super(t)}static init_PrintfTickFormatter(){this.define({format:[a.String,\"%s\"]})}doFormat(t,r){return t.map(t=>o.sprintf(this.format,t))}}i.PrintfTickFormatter=c,c.__name__=\"PrintfTickFormatter\",c.init_PrintfTickFormatter()},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var v=a(233);r.AnnularWedge=v.AnnularWedge;var l=a(234);r.Annulus=l.Annulus;var t=a(235);r.Arc=t.Arc;var i=a(236);r.Bezier=i.Bezier;var n=a(237);r.Circle=n.Circle;var u=a(241);r.CenterRotatable=u.CenterRotatable;var c=a(242);r.Ellipse=c.Ellipse;var g=a(243);r.EllipseOval=g.EllipseOval;var A=a(94);r.Glyph=A.Glyph;var p=a(111);r.HArea=p.HArea;var s=a(244);r.HBar=s.HBar;var d=a(246);r.HexTile=d.HexTile;var R=a(247);r.Image=R.Image;var o=a(249);r.ImageRGBA=o.ImageRGBA;var y=a(250);r.ImageURL=y.ImageURL;var h=a(92);r.Line=h.Line;var m=a(252);r.MultiLine=m.MultiLine;var B=a(253);r.MultiPolygons=B.MultiPolygons;var P=a(254);r.Oval=P.Oval;var G=a(110);r.Patch=G.Patch;var H=a(255);r.Patches=H.Patches;var I=a(256);r.Quad=I.Quad;var L=a(257);r.Quadratic=L.Quadratic;var M=a(258);r.Ray=M.Ray;var O=a(259);r.Rect=O.Rect;var x=a(260);r.Segment=x.Segment;var C=a(261);r.Step=C.Step;var E=a(262);r.Text=E.Text;var Q=a(113);r.VArea=Q.VArea;var S=a(263);r.VBar=S.VBar;var T=a(264);r.Wedge=T.Wedge;var V=a(93);r.XYGlyph=V.XYGlyph},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),r=e(93),n=e(100),a=e(28),_=e(24),o=i.__importStar(e(18)),d=e(10),h=e(88);class u extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius,this._angle=new _.NumberArray(this._start_angle.length);for(let e=0,t=this._start_angle.length;e=s&&u.push(e)}const l=this.model.properties.direction.value(),c=[];for(const e of u){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);d.angle_between(-i,-this._start_angle[e],-this._end_angle[e],l)&&c.push(e)}return new h.Selection({indices:c})}draw_legend_for_index(e,t,s){n.generic_area_legend(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this._start_angle[e]+this._end_angle[e])/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=u,u.__name__=\"AnnularWedgeView\";class l extends r.XYGlyph{constructor(e){super(e)}static init_AnnularWedge(){this.prototype.default_view=u,this.mixins([a.LineVector,a.FillVector]),this.define({direction:[o.Direction,\"anticlock\"],inner_radius:[o.DistanceSpec],outer_radius:[o.DistanceSpec],start_angle:[o.AngleSpec],end_angle:[o.AngleSpec]})}}s.AnnularWedge=l,l.__name__=\"AnnularWedge\",l.init_AnnularWedge()},\n", - " function _(s,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=s(1),r=s(93),n=s(28),a=t.__importStar(s(18)),_=s(32),u=s(88);class o extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this._inner_radius):this.sinner_radius=this._inner_radius,\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this._outer_radius):this.souter_radius=this._outer_radius}_render(s,i,{sx:e,sy:t,sinner_radius:r,souter_radius:n}){for(const a of i)if(!isNaN(e[a]+t[a]+r[a]+n[a])){if(this.visuals.fill.doit){if(this.visuals.fill.set_vectorize(s,a),s.beginPath(),_.is_ie)for(const i of[!1,!0])s.arc(e[a],t[a],r[a],0,Math.PI,i),s.arc(e[a],t[a],n[a],Math.PI,0,!i);else s.arc(e[a],t[a],r[a],0,2*Math.PI,!0),s.arc(e[a],t[a],n[a],2*Math.PI,0,!1);s.fill()}this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI),s.moveTo(e[a]+n[a],t[a]),s.arc(e[a],t[a],n[a],0,2*Math.PI),s.stroke())}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let n,a,_,o;if(\"data\"==this.model.properties.outer_radius.units)n=t-this.max_outer_radius,_=t+this.max_outer_radius,a=r-this.max_outer_radius,o=r+this.max_outer_radius;else{const s=i-this.max_outer_radius,t=i+this.max_outer_radius;[n,_]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_outer_radius,u=e+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(r,u)}const d=[];for(const s of this.index.indices({x0:n,x1:_,y0:a,y1:o})){const i=this.souter_radius[s]**2,e=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(t,this._x[s]),[_,u]=this.renderer.yscale.r_compute(r,this._y[s]),o=(n-a)**2+(_-u)**2;o<=i&&o>=e&&d.push(s)}return new u.Selection({indices:d})}draw_legend_for_index(s,{x0:i,y0:e,x1:t,y1:r},n){const a=n+1,_=new Array(a);_[n]=(i+t)/2;const u=new Array(a);u[n]=(e+r)/2;const o=.5*Math.min(Math.abs(t-i),Math.abs(r-e)),d=new Array(a);d[n]=.4*o;const h=new Array(a);h[n]=.8*o,this._render(s,[n],{sx:_,sy:u,sinner_radius:d,souter_radius:h})}}e.AnnulusView=o,o.__name__=\"AnnulusView\";class d extends r.XYGlyph{constructor(s){super(s)}static init_Annulus(){this.prototype.default_view=o,this.mixins([n.LineVector,n.FillVector]),this.define({inner_radius:[a.DistanceSpec],outer_radius:[a.DistanceSpec]})}}e.Annulus=d,d.__name__=\"Annulus\",d.init_Annulus()},\n", - " function _(e,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const t=e(1),r=e(93),n=e(100),a=e(28),_=t.__importStar(e(18));class c extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this._radius):this.sradius=this._radius}_render(e,i,{sx:s,sy:t,sradius:r,_start_angle:n,_end_angle:a}){if(this.visuals.line.doit){const _=this.model.properties.direction.value();for(const c of i)isNaN(s[c]+t[c]+r[c]+n[c]+a[c])||(e.beginPath(),e.arc(s[c],t[c],r[c],n[c],a[c],_),this.visuals.line.set_vectorize(e,c),e.stroke())}}draw_legend_for_index(e,i,s){n.generic_line_legend(this.visuals,e,i,s)}}s.ArcView=c,c.__name__=\"ArcView\";class d extends r.XYGlyph{constructor(e){super(e)}static init_Arc(){this.prototype.default_view=c,this.mixins(a.LineVector),this.define({direction:[_.Direction,\"anticlock\"],radius:[_.DistanceSpec],start_angle:[_.AngleSpec],end_angle:[_.AngleSpec]})}}s.Arc=d,d.__name__=\"Arc\",d.init_Arc()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(28),c=e(94),o=e(100),_=e(37),r=s.__importStar(e(18));function a(e,t,i,s,n,c,o,_){const r=[],a=[[],[]];for(let a=0;a<=2;a++){let h,d,x;if(0===a?(d=6*e-12*i+6*n,h=-3*e+9*i-9*n+3*o,x=3*i-3*e):(d=6*t-12*s+6*c,h=-3*t+9*s-9*c+3*_,x=3*s-3*t),Math.abs(h)<1e-12){if(Math.abs(d)<1e-12)continue;const e=-x/d;0Math.max(s,i[e]));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this._radius),i=this.sdist(this.renderer.yscale,this._y,this._radius);this.sradius=_.map(s,(s,e)=>Math.min(s,i[e]));break}}else this.sradius=this._radius,this.max_size=2*this.max_radius;else this.sradius=_.map(this._size,s=>s/2)}_mask_data(){const[s,i]=this.renderer.plot_view.frame.bbox.ranges;let e,t,r,a;if(null!=this._radius&&\"data\"==this.model.properties.radius.units){const n=s.start,h=s.end;[e,r]=this.renderer.xscale.r_invert(n,h),e-=this.max_radius,r+=this.max_radius;const d=i.start,l=i.end;[t,a]=this.renderer.yscale.r_invert(d,l),t-=this.max_radius,a+=this.max_radius}else{const n=s.start-this.max_size,h=s.end+this.max_size;[e,r]=this.renderer.xscale.r_invert(n,h);const d=i.start-this.max_size,l=i.end+this.max_size;[t,a]=this.renderer.yscale.r_invert(d,l)}return this.index.indices({x0:e,x1:r,y0:t,y1:a})}_render(s,i,{sx:e,sy:t,sradius:r}){for(const a of i)isNaN(e[a]+t[a]+r[a])||(s.beginPath(),s.arc(e[a],t[a],r[a],0,2*Math.PI,!1),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(s,a),s.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(s,a),s.stroke()))}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e);let a,n,h,d;if(null!=this._radius&&\"data\"==this.model.properties.radius.units)a=t-this.max_radius,n=t+this.max_radius,h=r-this.max_radius,d=r+this.max_radius;else{const s=i-this.max_size,t=i+this.max_size;[a,n]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size,l=e+this.max_size;[h,d]=this.renderer.yscale.r_invert(r,l)}const l=this.index.indices({x0:a,x1:n,y0:h,y1:d}),_=[];if(null!=this._radius&&\"data\"==this.model.properties.radius.units)for(const s of l){const i=this.sradius[s]**2,[e,a]=this.renderer.xscale.r_compute(t,this._x[s]),[n,h]=this.renderer.yscale.r_compute(r,this._y[s]);(e-a)**2+(n-h)**2<=i&&_.push(s)}else for(const s of l){const t=this.sradius[s]**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new c.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,null!=this._radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new c.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new c.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=l.range(0,this.sx.length),r=[];for(let s=0,a=t.length;s2*t)),i.data_changed=!1),this.visuals_changed&&(this._set_visuals(a),this.visuals_changed=!1),this.prog.set_uniform(\"u_pixel_ratio\",\"float\",[s.pixel_ratio]),this.prog.set_uniform(\"u_canvas_size\",\"vec2\",[s.width,s.height]),this.prog.set_attribute(\"a_sx\",\"float\",i.vbo_sx),this.prog.set_attribute(\"a_sy\",\"float\",i.vbo_sy),this.prog.set_attribute(\"a_size\",\"float\",i.vbo_s),this.prog.set_attribute(\"a_angle\",\"float\",i.vbo_a),0!=t.length)if(t.length===a)this.prog.draw(this.gl.POINTS,[0,a]);else if(a<65535){const e=window.navigator.userAgent;e.indexOf(\"MSIE \")+e.indexOf(\"Trident/\")+e.indexOf(\"Edge/\")>0&&n.logger.warn(\"WebGL warning: IE is known to produce 1px sprites whith selections.\"),this.index_buffer.set_size(2*t.length),this.index_buffer.set_data(0,new Uint16Array(t)),this.prog.draw(this.gl.POINTS,this.index_buffer)}else{const e=64e3,s=[];for(let t=0,i=Math.ceil(a/e);t2*t)):this.vbo_s.set_data(0,new Float32Array(this.glyph._size))}_set_visuals(t){u(this.prog,this.vbo_linewidth,\"a_linewidth\",t,this.glyph.visuals.line,\"line_width\"),f(this.prog,this.vbo_fg_color,\"a_fg_color\",t,this.glyph.visuals.line,\"line\"),f(this.prog,this.vbo_bg_color,\"a_bg_color\",t,this.glyph.visuals.fill,\"fill\"),this.prog.set_uniform(\"u_antialias\",\"float\",[.8])}}function b(t){return class extends d{get _marker_code(){return t}}}s.MarkerGL=d,d.__name__=\"MarkerGL\";const c=i.__importStar(t(240));s.AsteriskGL=b(c.asterisk),s.CircleGL=b(c.circle),s.CircleCrossGL=b(c.circlecross),s.CircleXGL=b(c.circlex),s.CrossGL=b(c.cross),s.DiamondGL=b(c.diamond),s.DiamondCrossGL=b(c.diamondcross),s.HexGL=b(c.hex),s.InvertedTriangleGL=b(c.invertedtriangle),s.SquareGL=b(c.square),s.SquareCrossGL=b(c.squarecross),s.SquareXGL=b(c.squarex),s.TriangleGL=b(c.triangle),s.XGL=b(c.x)},\n", - " function _(n,i,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.vertex_shader=\"\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\n//\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform vec2 u_offset;\\nuniform vec2 u_scale;\\nuniform float u_antialias;\\n//\\nattribute float a_sx;\\nattribute float a_sy;\\nattribute float a_size;\\nattribute float a_angle; // in radians\\nattribute float a_linewidth;\\nattribute vec4 a_fg_color;\\nattribute vec4 a_bg_color;\\n//\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying vec2 v_rotation;\\n\\nvoid main (void)\\n{\\n v_size = a_size * u_pixel_ratio;\\n v_linewidth = a_linewidth * u_pixel_ratio;\\n v_fg_color = a_fg_color;\\n v_bg_color = a_bg_color;\\n v_rotation = vec2(cos(-a_angle), sin(-a_angle));\\n vec2 pos = vec2(a_sx, a_sy); // in pixels\\n pos += 0.5; // make up for Bokeh's offset\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(pos*2.0-1.0, 0.0, 1.0);\\n gl_Position.y *= -1.0;\\n gl_PointSize = SQRT_2 * v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n}\\n\"},\n", - " function _(a,n,s){Object.defineProperty(s,\"__esModule\",{value:!0}),s.fragment_shader=a=>`\\nprecision mediump float;\\nconst float SQRT_2 = 1.4142135623730951;\\nconst float PI = 3.14159265358979323846264;\\n//\\nuniform float u_antialias;\\n//\\nvarying vec4 v_fg_color;\\nvarying vec4 v_bg_color;\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec2 v_rotation;\\n\\n${a}\\n\\nvec4 outline(float distance, float linewidth, float antialias, vec4 fg_color, vec4 bg_color)\\n{\\n vec4 frag_color;\\n float t = linewidth/2.0 - antialias;\\n float signed_distance = distance;\\n float border_distance = abs(signed_distance) - t;\\n float alpha = border_distance/antialias;\\n alpha = exp(-alpha*alpha);\\n\\n // If fg alpha is zero, it probably means no outline. To avoid a dark outline\\n // shining through due to aa, we set the fg color to the bg color. Avoid if (i.e. branching).\\n float select = float(bool(fg_color.a));\\n fg_color.rgb = select * fg_color.rgb + (1.0 - select) * bg_color.rgb;\\n // Similarly, if we want a transparent bg\\n select = float(bool(bg_color.a));\\n bg_color.rgb = select * bg_color.rgb + (1.0 - select) * fg_color.rgb;\\n\\n if( border_distance < 0.0)\\n frag_color = fg_color;\\n else if( signed_distance < 0.0 ) {\\n frag_color = mix(bg_color, fg_color, sqrt(alpha));\\n } else {\\n if( abs(signed_distance) < (linewidth/2.0 + antialias) ) {\\n frag_color = vec4(fg_color.rgb, fg_color.a * alpha);\\n } else {\\n discard;\\n }\\n }\\n return frag_color;\\n}\\n\\nvoid main()\\n{\\n vec2 P = gl_PointCoord.xy - vec2(0.5, 0.5);\\n P = vec2(v_rotation.x*P.x - v_rotation.y*P.y,\\n v_rotation.y*P.x + v_rotation.x*P.y);\\n float point_size = SQRT_2*v_size + 2.0 * (v_linewidth + 1.5*u_antialias);\\n float distance = marker(P*point_size, v_size);\\n gl_FragColor = outline(distance, v_linewidth, u_antialias, v_fg_color, v_bg_color);\\n}\\n`,s.circle=\"\\nfloat marker(vec2 P, float size)\\n{\\n return length(P) - size/2.0;\\n}\\n\",s.square=\"\\nfloat marker(vec2 P, float size)\\n{\\n return max(abs(P.x), abs(P.y)) - size/2.0;\\n}\\n\",s.diamond=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n return r1 / SQRT_2;\\n}\\n\",s.hex=\"\\nfloat marker(vec2 P, float size)\\n{\\n vec2 q = abs(P);\\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\\n}\\n\",s.triangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y -= size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.invertedtriangle=\"\\nfloat marker(vec2 P, float size)\\n{\\n P.y += size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = - P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n\",s.cross='\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size / 2.5; // 2.5 is a tweak\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(square, cross);\\n}\\n',s.circlecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.squarecross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.diamondcross=\"\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n diamond /= SQRT_2;\\n float c1 = max(diamond, s1);\\n float c2 = max(diamond, s2);\\n float c3 = max(diamond, s3);\\n float c4 = max(diamond, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.x='\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size / 1.6;\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return max(circle, X);\\n}\\n',s.circlex='\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n float almost = min(min(min(c1, c2), c3), c4);\\n // In this case, the X is also outside of the main shape\\n float Xmask = length(P) - size / 1.6; // a circle\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n return min(max(X, Xmask), almost);\\n}\\n',s.squarex=\"\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n\",s.asterisk='\\nfloat marker(vec2 P, float size)\\n{\\n // Masks\\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / (2.0 * SQRT_2);\\n float square = max(abs(P.x), abs(P.y)) - size / (2.0 * SQRT_2);\\n // Shapes\\n float X = min(abs(P.x - P.y), abs(P.x + P.y)) - size / 100.0; // bit of \"width\" for aa\\n float cross = min(abs(P.x), abs(P.y)) - size / 100.0; // bit of \"width\" for aa\\n // Result is union of masked shapes\\n return min(max(X, diamond), max(cross, square));\\n}\\n'},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const a=e(1),i=e(93),l=e(28),s=a.__importStar(e(18));class c extends i.XYGlyphView{}n.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class o extends i.XYGlyph{constructor(e){super(e)}static init_CenterRotatable(){this.mixins([l.LineVector,l.FillVector]),this.define({angle:[s.AngleSpec,0],width:[s.DistanceSpec],height:[s.DistanceSpec]})}}n.CenterRotatable=o,o.__name__=\"CenterRotatable\",o.init_CenterRotatable()},\n", - " function _(e,l,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(243);class t extends s.EllipseOvalView{}i.EllipseView=t,t.__name__=\"EllipseView\";class _ extends s.EllipseOval{constructor(e){super(e)}static init_Ellipse(){this.prototype.default_view=t}}i.Ellipse=_,_.__name__=\"Ellipse\",_.init_Ellipse()},\n", - " function _(t,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=t(1),h=t(241),a=e.__importStar(t(101)),r=t(88);class n extends h.CenterRotatableView{_set_data(){this.max_w2=0,\"data\"==this.model.properties.width.units&&(this.max_w2=this.max_width/2),this.max_h2=0,\"data\"==this.model.properties.height.units&&(this.max_h2=this.max_height/2)}_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this._width,\"center\"):this.sw=this._width,\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"):this.sh=this._height}_render(t,s,{sx:i,sy:e,sw:h,sh:a,_angle:r}){for(const n of s)isNaN(i[n]+e[n]+h[n]+a[n]+r[n])||(t.beginPath(),t.ellipse(i[n],e[n],h[n]/2,a[n]/2,r[n],0,2*Math.PI),this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(t,n),t.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,n),t.stroke()))}_hit_point(t){let s,i,e,h,n,_,l,d,o;const{sx:x,sy:m}=t,w=this.renderer.xscale.invert(x),c=this.renderer.yscale.invert(m);\"data\"==this.model.properties.width.units?(s=w-this.max_width,i=w+this.max_width):(_=x-this.max_width,l=x+this.max_width,[s,i]=this.renderer.xscale.r_invert(_,l)),\"data\"==this.model.properties.height.units?(e=c-this.max_height,h=c+this.max_height):(d=m-this.max_height,o=m+this.max_height,[e,h]=this.renderer.yscale.r_invert(d,o));const p=this.index.indices({x0:s,x1:i,y0:e,y1:h}),y=[];for(const t of p)n=a.point_in_ellipse(x,m,this._angle[t],this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new r.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:i,x1:e,y1:h},a){const r=a+1,n=new Array(r);n[a]=(s+e)/2;const _=new Array(r);_[a]=(i+h)/2;const l=this.sw[a]/this.sh[a],d=.8*Math.min(Math.abs(e-s),Math.abs(h-i)),o=new Array(r),x=new Array(r);l>1?(o[a]=d,x[a]=d/l):(o[a]=d*l,x[a]=d),this._render(t,[a],{sx:n,sy:_,sw:o,sh:x,_angle:[0]})}_bounds({x0:t,x1:s,y0:i,y1:e}){return{x0:t-this.max_w2,x1:s+this.max_w2,y0:i-this.max_h2,y1:e+this.max_h2}}}i.EllipseOvalView=n,n.__name__=\"EllipseOvalView\";class _ extends h.CenterRotatable{constructor(t){super(t)}}i.EllipseOval=_,_.__name__=\"EllipseOval\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(1),h=t(245),r=t(24),_=i.__importStar(t(18));class a extends h.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){return[Math.min(this._left[t],this._right[t]),Math.max(this._left[t],this._right[t]),this._y[t]+.5*this._height[t],this._y[t]-.5*this._height[t]]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this._height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new r.NumberArray(t),this.sbottom=new r.NumberArray(t);for(let e=0;e{t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.fill()},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(t,a),t.beginPath(),t.rect(i[a],r[a],s[a]-i[a],n[a]-r[a]),t.stroke()))}_clamp_viewport(){const t=this.renderer.plot_view.frame.bbox.h_range,e=this.renderer.plot_view.frame.bbox.v_range,i=this.stop.length;for(let s=0;sthis._update_image())}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.plot_view.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}a.ImageView=r,r.__name__=\"ImageView\";class o extends i.ImageBase{constructor(e){super(e)}static init_Image(){this.prototype.default_view=r,this.define({color_mapper:[s.Instance,()=>new n.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})}}a.Image=o,o.__name__=\"Image\",o.init_Image()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(93),h=e(24),_=i.__importStar(e(18)),n=e(88),r=e(9),d=e(30),l=e(11);class g extends a.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,()=>this.renderer.request_render())}_render(e,t,{image_data:s,sx:i,sy:a,sw:h,sh:_}){const n=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1),e.globalAlpha=this.model.global_alpha;for(const n of t){if(null==s[n]||isNaN(i[n]+a[n]+h[n]+_[n]))continue;const t=a[n];e.translate(0,t),e.scale(1,-1),e.translate(0,-t),e.drawImage(s[n],0|i[n],0|a[n],h[n],_[n]),e.translate(0,t),e.scale(1,-1),e.translate(0,-t)}e.setImageSmoothingEnabled(n)}_set_data(e){this._set_width_heigh_data();for(let t=0,s=this._image.length;tthis.renderer.request_render())}_index_data(e){const{data_size:t}=this;for(let s=0;snull));const{retry_attempts:e,retry_timeout:t}=this.model;for(let s=0,r=this._url.length;s{this.image[s]=e,this.renderer.request_render()},attempts:e+1,timeout:t})}const s=\"data\"==this.model.properties.w.units,r=\"data\"==this.model.properties.h.units,i=this._x.length,n=new a.NumberArray(s?2*i:i),_=new a.NumberArray(r?2*i:i),{anchor:c}=this.model;function l(e,t){switch(c){case\"top_left\":case\"bottom_left\":case\"center_left\":return[e,e+t];case\"top_center\":case\"bottom_center\":case\"center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"center_right\":return[e-t,e]}}function d(e,t){switch(c){case\"top_left\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"center_left\":case\"center\":case\"center_right\":return[e+t/2,e-t/2]}}if(s)for(let e=0;eNaN),t=null!=this.model.h?this._h:h.map(this._x,()=>NaN);switch(this.model.properties.w.units){case\"data\":this.sw=this.sdist(this.renderer.xscale,this._x,e,\"edge\",this.model.dilate);break;case\"screen\":this.sw=e}switch(this.model.properties.h.units){case\"data\":this.sh=this.sdist(this.renderer.yscale,this._y,t,\"edge\",this.model.dilate);break;case\"screen\":this.sh=t}}_render(e,t,{image:s,sx:r,sy:i,sw:a,sh:n,_angle:h}){const{frame:o}=this.renderer.plot_view;e.rect(o.bbox.left+1,o.bbox.top+1,o.bbox.width-2,o.bbox.height-2),e.clip();let _=!0;for(const o of t){if(isNaN(r[o]+i[o]+h[o]))continue;const t=s[o];null!=t?this._render_image(e,o,t,r,i,a,n,h):_=!1}_&&!this._images_rendered&&(this._images_rendered=!0,this.notify_finished())}_final_sx_sy(e,t,s,r,i){switch(e){case\"top_left\":return[t,s];case\"top_center\":return[t-r/2,s];case\"top_right\":return[t-r,s];case\"center_right\":return[t-r,s-i/2];case\"bottom_right\":return[t-r,s-i];case\"bottom_center\":return[t-r/2,s-i];case\"bottom_left\":return[t,s-i];case\"center_left\":return[t,s-i/2];case\"center\":return[t-r/2,s-i/2]}}_render_image(e,t,s,r,i,a,n,h){isNaN(a[t])&&(a[t]=s.width),isNaN(n[t])&&(n[t]=s.height);const{anchor:o}=this.model,[_,c]=this._final_sx_sy(o,r[t],i[t],a[t],n[t]);e.save(),e.globalAlpha=this.model.global_alpha;const l=a[t]/2,d=n[t]/2;h[t]?(e.translate(_,c),e.translate(l,d),e.rotate(h[t]),e.translate(-l,-d),e.drawImage(s,0,0,a[t],n[t]),e.translate(l,d),e.rotate(-h[t]),e.translate(-l,-d),e.translate(-_,-c)):e.drawImage(s,_,c,a[t],n[t]),e.restore()}bounds(){return this._bounds_rect}}s.ImageURLView=_,_.__name__=\"ImageURLView\";class c extends i.XYGlyph{constructor(e){super(e)}static init_ImageURL(){this.prototype.default_view=_,this.define({url:[n.StringSpec],anchor:[n.Anchor,\"top_left\"],global_alpha:[n.Number,1],angle:[n.AngleSpec,0],w:[n.DistanceSpec],h:[n.DistanceSpec],dilate:[n.Boolean,!1],retry_attempts:[n.Number,0],retry_timeout:[n.Number,0]})}}s.ImageURL=c,c.__name__=\"ImageURL\",c.init_ImageURL()},\n", - " function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=i(19);class a{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:a=1}=e;this.promise=new Promise((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const a=`unable to load ${i} image after ${t} attempts`;if(s.logger.warn(a),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());s.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout(()=>this._image.src=i,a)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i})}get finished(){return this._finished}get image(){return this._image}}t.ImageLoader=a,a.__name__=\"ImageLoader\"},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(37),o=e(28),l=s.__importStar(e(101)),r=s.__importStar(e(18)),_=e(12),c=e(13),a=e(94),h=e(100),d=e(88);class y extends a.GlyphView{_project_data(){n.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let i=0;i0&&o.set(e,i)}return new d.Selection({indices:[...o.keys()],multiline_indices:c.to_object(o)})}get_interpolation_hit(e,t,i){const s=this._xs.get(e),n=this._ys.get(e),o=s[t],l=n[t],r=s[t+1],_=n[t+1];return h.line_interpolation(this.renderer,i,o,l,r,_)}draw_legend_for_index(e,t,i){h.generic_line_legend(this.visuals,e,t,i)}scenterxy(){throw new Error(this+\".scenterxy() is not implemented\")}}i.MultiLineView=y,y.__name__=\"MultiLineView\";class x extends a.Glyph{constructor(e){super(e)}static init_MultiLine(){this.prototype.default_view=y,this.define({xs:[r.XCoordinateSeqSpec,{field:\"xs\"}],ys:[r.YCoordinateSeqSpec,{field:\"ys\"}]}),this.mixins(o.LineVector)}}i.MultiLine=x,x.__name__=\"MultiLine\",x.init_MultiLine()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(95),o=e(94),r=e(100),l=e(12),h=e(12),_=e(28),a=i.__importStar(e(101)),d=i.__importStar(e(18)),c=e(88),x=e(11);class y extends o.GlyphView{_project_data(){}_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let n=0;n1&&d.length>1)for(let s=1,i=n.length;s{this._inner_loop(e,t,o),e.fill(\"evenodd\")},()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,o),e.stroke())}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,o=[t,s,s,t],r=[i,i,n,n],[l,h]=this.renderer.xscale.r_invert(t,s),[_,d]=this.renderer.yscale.r_invert(i,n),x=this.index.indices({x0:l,x1:h,y0:_,y1:d}),y=[];for(const e of x){const t=this.sxs[e],s=this.sys[e];let i=!0;for(let e=0,n=t.length;e1){let r=!1;for(let e=1;ethis._inner_loop(e,t,r,e.fill),()=>this.renderer.request_render()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,n),this._inner_loop(e,t,r,e.stroke))}}_hit_rect(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,r=[t,s,s,t],o=[i,i,n,n],[a,c]=this.renderer.xscale.r_invert(t,s),[h,d]=this.renderer.yscale.r_invert(i,n),y=this.index.indices({x0:a,x1:c,y0:h,y1:d}),p=[];for(const e of y){const t=this.sxs.get(e),s=this.sys.get(e);let i=!0;for(let e=0,n=t.length;e1&&(e.stroke(),s=!1)}s?(e.lineTo(t,a),e.lineTo(l,_)):(e.beginPath(),e.moveTo(i[r],n[r]),s=!0),o=r}e.lineTo(i[r-1],n[r-1]),e.stroke()}}draw_legend_for_index(e,t,i){o.generic_line_legend(this.visuals,e,t,i)}}i.StepView=a,a.__name__=\"StepView\";class _ extends s.XYGlyph{constructor(e){super(e)}static init_Step(){this.prototype.default_view=a,this.mixins(r.LineVector),this.define({mode:[l.StepMode,\"before\"]})}}i.Step=_,_.__name__=\"Step\",_.init_Step()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),n=t(93),_=t(28),o=i.__importStar(t(101)),h=i.__importStar(t(18)),l=t(159),a=t(11),r=t(88);class c extends n.XYGlyphView{_rotate_point(t,s,e,i,n){return[(t-e)*Math.cos(n)-(s-i)*Math.sin(n)+e,(t-e)*Math.sin(n)+(s-i)*Math.cos(n)+i]}_text_bounds(t,s,e,i){return[[t,t+e,t+e,t,t],[s,s,s-i,s-i,s]]}_render(t,s,{sx:e,sy:i,_x_offset:n,_y_offset:_,_angle:o,_text:h}){this._sys=[],this._sxs=[];for(const a of s)if(this._sxs[a]=[],this._sys[a]=[],!isNaN(e[a]+i[a]+n[a]+_[a]+o[a])&&null!=h[a]&&this.visuals.text.doit){const s=\"\"+h[a];t.save(),t.translate(e[a]+n[a],i[a]+_[a]),t.rotate(o[a]),this.visuals.text.set_vectorize(t,a);const r=this.visuals.text.cache_select(\"font\",a),{height:c}=l.measure_font(r),x=this.visuals.text.text_line_height.value()*c;if(-1==s.indexOf(\"\\n\")){t.fillText(s,0,0);const o=e[a]+n[a],h=i[a]+_[a],l=t.measureText(s).width,[r,c]=this._text_bounds(o,h,l,x);this._sxs[a].push(r),this._sys[a].push(c)}else{const o=s.split(\"\\n\"),h=x*o.length,l=this.visuals.text.cache_select(\"text_baseline\",a);let r;switch(l){case\"top\":r=0;break;case\"middle\":r=-h/2+x/2;break;case\"bottom\":r=-h+x;break;default:r=0,console.warn(`'${l}' baseline not supported with multi line text`)}for(const s of o){t.fillText(s,0,r);const o=e[a]+n[a],h=r+i[a]+_[a],l=t.measureText(s).width,[c,u]=this._text_bounds(o,h,l,x);this._sxs[a].push(c),this._sys[a].push(u),r+=x}}t.restore()}}_hit_point(t){const{sx:s,sy:e}=t,i=[];for(let t=0;tthis.request_render())}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;this.visuals.band_fill.set_value(i);const[e,t]=this.grid_coords(\"major\",!1);for(let s=0;s{i.fillRect(n[0],r[0],o[1]-n[0],d[1]-r[0])},()=>this.request_render())}}_draw_grids(i){if(!this.visuals.grid_line.doit)return;const[e,t]=this.grid_coords(\"major\");this._draw_grid_helper(i,this.visuals.grid_line,e,t)}_draw_minor_grids(i){if(!this.visuals.minor_grid_line.doit)return;const[e,t]=this.grid_coords(\"minor\");this._draw_grid_helper(i,this.visuals.minor_grid_line,e,t)}_draw_grid_helper(i,e,t,s){e.set_value(i),i.beginPath();for(let e=0;et[1]&&(n=t[1]);else{[s,n]=t;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,n]=i.computed_bounds)}return[s,n]}grid_coords(i,e=!0){const t=this.model.dimension,s=(t+1)%2,[n,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,n,r.min,{})[i],h=n.min,c=n.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;ithis.rebuild())}get child_models(){return this.model.children}}i.BoxView=c,c.__name__=\"BoxView\";class r extends s.LayoutDOM{constructor(e){super(e)}static init_Box(){this.define({children:[o.Array,[]],spacing:[o.Number,0]})}}i.Box=r,r.__name__=\"Box\",r.init_Box()},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=i(81),o=i(20),l=i(72),n=i(19),h=i(8),a=i(115),r=i(78),_=i(212),d=i(273),c=i(77);class u extends r.DOMView{constructor(){super(...arguments),this._idle_notified=!1,this._offset_parent=null,this._viewport={}}initialize(){super.initialize(),this.el.style.position=this.is_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await this.build_child_views()}remove(){for(const i of this.child_views)i.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval(()=>{const i=this.el.offsetParent;this._offset_parent!=i&&(this._offset_parent=i,null!=i&&(this.compute_viewport(),this.invalidate_layout()))},250));const i=this.model.properties;this.on_change([i.width,i.height,i.min_width,i.min_height,i.max_width,i.max_height,i.margin,i.width_policy,i.height_policy,i.sizing_mode,i.aspect_ratio,i.visible],()=>this.invalidate_layout()),this.on_change([i.background,i.css_classes],()=>this.invalidate_render())}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map(i=>this._child_views.get(i))}async build_child_views(){await a.build_views(this._child_views,this.child_models,{parent:this})}render(){super.render(),l.empty(this.el);const{background:i}=this.model;this.el.style.backgroundColor=null!=i?i:\"\",l.classes(this.el).clear().add(...this.css_classes());for(const i of this.child_views)this.el.appendChild(i.el),i.render()}update_layout(){for(const i of this.child_views)i.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const i=this.is_root?this.layout.sizing.margin:void 0;l.position(this.el,this.layout.bbox,i);for(const i of this.child_views)i.update_position()}after_layout(){for(const i of this.child_views)i.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(i){i.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build()}build(){return this.assert_root(),this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const i=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),n.logger.debug(`layout computed in ${Date.now()-i} ms`),this.notify_finished()}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const i of this.child_views)if(!i.has_finished())return!1;return!0}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:i,height_policy:t,aspect_ratio:e}=this.model;\"auto\"==i&&(i=this._width_policy()),\"auto\"==t&&(t=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)i=t=\"fixed\";else if(\"stretch_both\"==s)i=t=\"max\";else if(\"stretch_width\"==s)i=\"max\";else if(\"stretch_height\"==s)t=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":i=\"max\",t=\"min\";break;case\"scale_height\":i=\"min\",t=\"max\";break;case\"scale_both\":i=\"max\",t=\"max\"}const o={width_policy:i,height_policy:t},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:a,height:r}=this.model;null!=a&&(o.width=a),null!=r&&(o.height=r);const{max_width:_,max_height:d}=this.model;null!=_&&(o.max_width=_),null!=d&&(o.max_height=d),\"auto\"==e&&null!=a&&null!=r?o.aspect=a/r:h.isNumber(e)&&(o.aspect=e);const{margin:c}=this.model;if(null!=c)if(h.isNumber(c))o.margin={top:c,right:c,bottom:c,left:c};else if(2==c.length){const[i,t]=c;o.margin={top:i,right:t,bottom:i,left:t}}else{const[i,t,e,s]=c;o.margin={top:i,right:t,bottom:e,left:s}}o.visible=this.model.visible;const{align:u}=this.model;return h.isArray(u)?[o.halign,o.valign]=u:o.halign=o.valign=u,o}_viewport_size(){return l.undisplayed(this.el,()=>{let i=this.el;for(;i=i.parentElement;){if(i.classList.contains(d.bk_root))continue;if(i==document.body){const{margin:{left:i,right:t,top:e,bottom:s}}=l.extents(document.body);return{width:Math.ceil(document.documentElement.clientWidth-i-t),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:t,right:e,top:s,bottom:o}}=l.extents(i),{width:n,height:h}=i.getBoundingClientRect(),a=Math.ceil(n-t-e),r=Math.ceil(h-s-o);if(a>0||r>0)return{width:a>0?a:void 0,height:r>0?r:void 0}}return{}})}export(i,t=!0){const e=\"png\"==i?\"canvas\":\"svg\",s=new c.CanvasLayer(e,t),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(i,t),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map(i=>i.serializable_state())})}}e.LayoutDOMView=u,u.__name__=\"LayoutDOMView\";class m extends s.Model{constructor(i){super(i)}static init_LayoutDOM(){this.define(i=>{const{Boolean:t,Number:e,String:s,Null:l,Auto:n,Color:h,Array:a,Tuple:r,Or:d}=i,c=r(e,e),u=r(e,e,e,e);return{width:[d(e,l),null],height:[d(e,l),null],min_width:[d(e,l),null],min_height:[d(e,l),null],max_width:[d(e,l),null],max_height:[d(e,l),null],margin:[d(e,c,u),[0,0,0,0]],width_policy:[d(_.SizingPolicy,n),\"auto\"],height_policy:[d(_.SizingPolicy,n),\"auto\"],aspect_ratio:[d(e,n,l),null],sizing_mode:[d(o.SizingMode,l),null],visible:[t,!0],disabled:[t,!1],align:[d(o.Align,r(o.Align,o.Align)),\"start\"],background:[d(h,l),null],css_classes:[a(s),[]]}})}}e.LayoutDOM=m,m.__name__=\"LayoutDOM\",m.init_LayoutDOM()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_root=\"bk-root\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),n=t(216),l=s.__importStar(t(18));class u extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new n.Column(t),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}i.ColumnView=u,u.__name__=\"ColumnView\";class _ extends e.Box{constructor(t){super(t)}static init_Column(){this.prototype.default_view=u,this.define({rows:[l.Any,\"auto\"]})}}i.Column=_,_.__name__=\"Column\",_.init_Column()},\n", - " function _(t,i,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=t(1),e=t(272),n=t(216),l=o.__importStar(t(18));class r extends e.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,()=>this.rebuild())}get child_models(){return this.model.children.map(([t])=>t)}_update_layout(){this.layout=new n.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[t,i,s,o,e]of this.model.children){const n=this._child_views.get(t);this.layout.items.push({layout:n.layout,row:i,col:s,row_span:o,col_span:e})}this.layout.set_sizing(this.box_sizing())}}s.GridBoxView=r,r.__name__=\"GridBoxView\";class a extends e.LayoutDOM{constructor(t){super(t)}static init_GridBox(){this.prototype.default_view=r,this.define({children:[l.Array,[]],rows:[l.Any,\"auto\"],cols:[l.Any,\"auto\"],spacing:[l.Any,0]})}}s.GridBox=a,a.__name__=\"GridBox\",a.init_GridBox()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(272),_=e(212);class n extends s.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new _.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=n,n.__name__=\"HTMLBoxView\";class i extends s.LayoutDOM{constructor(e){super(e)}}o.HTMLBox=i,i.__name__=\"HTMLBox\"},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),e=t(271),_=t(216),a=s.__importStar(t(18));class n extends e.BoxView{_update_layout(){const t=this.child_views.map(t=>t.layout);this.layout=new _.Row(t),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}i.RowView=n,n.__name__=\"RowView\";class l extends e.Box{constructor(t){super(t)}static init_Row(){this.prototype.default_view=n,this.define({cols:[a.Any,\"auto\"]})}}i.Row=l,l.__name__=\"Row\",l.init_Row()},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const i=e(272),s=e(212);class _ extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new s.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=_,_.__name__=\"SpacerView\";class o extends i.LayoutDOM{constructor(e){super(e)}static init_Spacer(){this.prototype.default_view=_}}a.Spacer=o,o.__name__=\"Spacer\",o.init_Spacer()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(212),l=e(72),h=e(9),o=i.__importStar(e(18)),c=e(272),d=e(81),r=e(173),n=e(280),_=e(281),b=e(282),p=i.__importDefault(e(283)),u=i.__importDefault(e(284)),m=i.__importDefault(e(285));class v extends c.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,()=>this.rebuild()),this.connect(this.model.properties.active.change,()=>this.on_active_change())}styles(){return[...super.styles(),p.default,u.default,m.default]}get child_models(){return this.model.tabs.map(e=>e.child)}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends a.ContentBox{_measure(e){const a=l.size(s),o=l.children(i).slice(0,3).map(e=>l.size(e)),{width:c,height:d}=super._measure(e);if(t){const t=a.width+h.sum(o.map(e=>e.width));return{width:e.width!=1/0?e.width:t,height:d}}{const t=a.height+h.sum(o.map(e=>e.height));return{width:c,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let o=1,c=1;switch(e){case\"above\":o-=1;break;case\"below\":o+=1;break;case\"left\":c-=1;break;case\"right\":c+=1}const d={layout:this.header,row:o,col:c},r=this.child_views.map(e=>({layout:e.layout,row:1,col:1}));this.layout=new a.Grid([d,...r]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",l.position(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=l.size(this.scroll_el),i=l.scroll_size(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxWidth=\"\",l.undisplay(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",l.display(this.scroll_el)):(this.wrapper_el.style.maxHeight=\"\",l.undisplay(this.scroll_el))}const{child_views:a}=this;for(const e of a)l.hide(e.el);const h=a[this.model.active];null!=h&&l.show(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs_location,s=\"above\"==t||\"below\"==t,i=this.model.tabs.map((t,s)=>{const i=l.div({class:[n.bk_tab,s==e?r.bk_active:null]},t.title);if(i.addEventListener(\"click\",e=>{e.target==e.currentTarget&&this.change_active(s)}),t.closable){const e=l.div({class:n.bk_close});e.addEventListener(\"click\",e=>{if(e.target==e.currentTarget){this.model.tabs=h.remove_at(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}}),i.appendChild(e)}return i});this.headers_el=l.div({class:[n.bk_headers]},i),this.wrapper_el=l.div({class:n.bk_headers_wrapper},this.headers_el);const a=l.div({class:[_.bk_btn,_.bk_btn_default],disabled:\"\"},l.div({class:[b.bk_caret,r.bk_left]})),o=l.div({class:[_.bk_btn,_.bk_btn_default]},l.div({class:[b.bk_caret,r.bk_right]}));let c=0;const d=e=>()=>{const t=this.model.tabs.length;c=\"left\"==e?Math.max(c-1,0):Math.min(c+1,t-1),0==c?a.setAttribute(\"disabled\",\"\"):a.removeAttribute(\"disabled\"),c==t-1?o.setAttribute(\"disabled\",\"\"):o.removeAttribute(\"disabled\");const i=l.children(this.headers_el).slice(0,c).map(e=>e.getBoundingClientRect());if(s){const e=-h.sum(i.map(e=>e.width));this.headers_el.style.left=e+\"px\"}else{const e=-h.sum(i.map(e=>e.height));this.headers_el.style.top=e+\"px\"}};a.addEventListener(\"click\",d(\"left\")),o.addEventListener(\"click\",d(\"right\")),this.scroll_el=l.div({class:_.bk_btn_group},a,o),this.header_el=l.div({class:[n.bk_tabs_header,r.bk_side(t)]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=l.children(this.headers_el);for(const e of t)e.classList.remove(r.bk_active);t[e].classList.add(r.bk_active);const{child_views:s}=this;for(const e of s)l.hide(e.el);l.show(s[e].el)}}s.TabsView=v,v.__name__=\"TabsView\";class g extends c.LayoutDOM{constructor(e){super(e)}static init_Tabs(){this.prototype.default_view=v,this.define({tabs:[o.Array,[]],tabs_location:[o.Location,\"above\"],active:[o.Number,0]})}}s.Tabs=g,g.__name__=\"Tabs\",g.init_Tabs();class w extends d.Model{constructor(e){super(e)}static init_Panel(){this.define({title:[o.String,\"\"],child:[o.Instance],closable:[o.Boolean,!1]})}}s.Panel=w,w.__name__=\"Panel\",w.init_Panel()},\n", - " function _(e,b,a){Object.defineProperty(a,\"__esModule\",{value:!0}),a.bk_tabs_header=\"bk-tabs-header\",a.bk_headers_wrapper=\"bk-headers-wrapper\",a.bk_headers=\"bk-headers\",a.bk_tab=\"bk-tab\",a.bk_close=\"bk-close\"},\n", - " function _(n,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_btn=\"bk-btn\",t.bk_btn_group=\"bk-btn-group\",t.bk_btn_default=\"bk-btn-default\",t.bk_btn_primary=\"bk-btn-primary\",t.bk_btn_success=\"bk-btn-success\",t.bk_btn_warning=\"bk-btn-warning\",t.bk_btn_danger=\"bk-btn-danger\",t.bk_btn_type=function(n){switch(n){case\"default\":return t.bk_btn_default;case\"primary\":return t.bk_btn_primary;case\"success\":return t.bk_btn_success;case\"warning\":return t.bk_btn_warning;case\"danger\":return t.bk_btn_danger}},t.bk_dropdown_toggle=\"bk-dropdown-toggle\"},\n", - " function _(e,b,d){Object.defineProperty(d,\"__esModule\",{value:!0}),d.bk_menu=\"bk-menu\",d.bk_caret=\"bk-caret\",d.bk_divider=\"bk-divider\"},\n", - " function _(n,o,b){Object.defineProperty(b,\"__esModule\",{value:!0});b.default=\"\\n.bk-root .bk-btn {\\n height: 100%;\\n display: inline-block;\\n text-align: center;\\n vertical-align: middle;\\n white-space: nowrap;\\n cursor: pointer;\\n padding: 6px 12px;\\n font-size: 12px;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n outline: 0;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-btn:hover,\\n.bk-root .bk-btn:focus {\\n text-decoration: none;\\n}\\n.bk-root .bk-btn:active,\\n.bk-root .bk-btn.bk-active {\\n background-image: none;\\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\\n}\\n.bk-root .bk-btn[disabled] {\\n cursor: not-allowed;\\n pointer-events: none;\\n opacity: 0.65;\\n box-shadow: none;\\n}\\n.bk-root .bk-btn-default {\\n color: #333;\\n background-color: #fff;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-default:hover {\\n background-color: #f5f5f5;\\n border-color: #b8b8b8;\\n}\\n.bk-root .bk-btn-default.bk-active {\\n background-color: #ebebeb;\\n border-color: #adadad;\\n}\\n.bk-root .bk-btn-default[disabled],\\n.bk-root .bk-btn-default[disabled]:hover,\\n.bk-root .bk-btn-default[disabled]:focus,\\n.bk-root .bk-btn-default[disabled]:active,\\n.bk-root .bk-btn-default[disabled].bk-active {\\n background-color: #e6e6e6;\\n border-color: #ccc;\\n}\\n.bk-root .bk-btn-primary {\\n color: #fff;\\n background-color: #428bca;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-primary:hover {\\n background-color: #3681c1;\\n border-color: #2c699e;\\n}\\n.bk-root .bk-btn-primary.bk-active {\\n background-color: #3276b1;\\n border-color: #285e8e;\\n}\\n.bk-root .bk-btn-primary[disabled],\\n.bk-root .bk-btn-primary[disabled]:hover,\\n.bk-root .bk-btn-primary[disabled]:focus,\\n.bk-root .bk-btn-primary[disabled]:active,\\n.bk-root .bk-btn-primary[disabled].bk-active {\\n background-color: #506f89;\\n border-color: #357ebd;\\n}\\n.bk-root .bk-btn-success {\\n color: #fff;\\n background-color: #5cb85c;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-success:hover {\\n background-color: #4eb24e;\\n border-color: #409240;\\n}\\n.bk-root .bk-btn-success.bk-active {\\n background-color: #47a447;\\n border-color: #398439;\\n}\\n.bk-root .bk-btn-success[disabled],\\n.bk-root .bk-btn-success[disabled]:hover,\\n.bk-root .bk-btn-success[disabled]:focus,\\n.bk-root .bk-btn-success[disabled]:active,\\n.bk-root .bk-btn-success[disabled].bk-active {\\n background-color: #667b66;\\n border-color: #4cae4c;\\n}\\n.bk-root .bk-btn-warning {\\n color: #fff;\\n background-color: #f0ad4e;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-warning:hover {\\n background-color: #eea43b;\\n border-color: #e89014;\\n}\\n.bk-root .bk-btn-warning.bk-active {\\n background-color: #ed9c28;\\n border-color: #d58512;\\n}\\n.bk-root .bk-btn-warning[disabled],\\n.bk-root .bk-btn-warning[disabled]:hover,\\n.bk-root .bk-btn-warning[disabled]:focus,\\n.bk-root .bk-btn-warning[disabled]:active,\\n.bk-root .bk-btn-warning[disabled].bk-active {\\n background-color: #c89143;\\n border-color: #eea236;\\n}\\n.bk-root .bk-btn-danger {\\n color: #fff;\\n background-color: #d9534f;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-danger:hover {\\n background-color: #d5433e;\\n border-color: #bd2d29;\\n}\\n.bk-root .bk-btn-danger.bk-active {\\n background-color: #d2322d;\\n border-color: #ac2925;\\n}\\n.bk-root .bk-btn-danger[disabled],\\n.bk-root .bk-btn-danger[disabled]:hover,\\n.bk-root .bk-btn-danger[disabled]:focus,\\n.bk-root .bk-btn-danger[disabled]:active,\\n.bk-root .bk-btn-danger[disabled].bk-active {\\n background-color: #a55350;\\n border-color: #d43f3a;\\n}\\n.bk-root .bk-btn-group {\\n height: 100%;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-btn-group > .bk-btn {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n}\\n.bk-root .bk-btn-group > .bk-btn + .bk-btn {\\n margin-left: -1px;\\n}\\n.bk-root .bk-btn-group > .bk-btn:first-child:not(:last-child) {\\n border-bottom-right-radius: 0;\\n border-top-right-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):last-child {\\n border-bottom-left-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child) {\\n border-radius: 0;\\n}\\n.bk-root .bk-btn-group .bk-dropdown-toggle {\\n flex: 0 0 0;\\n -webkit-flex: 0 0 0;\\n padding: 6px 6px;\\n}\\n\"},\n", - " function _(n,o,r){Object.defineProperty(r,\"__esModule\",{value:!0});r.default=\"\\n.bk-root .bk-menu-icon {\\n width: 28px;\\n height: 28px;\\n background-size: 60%;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-context-menu {\\n position: absolute;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n width: auto;\\n height: auto;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-context-menu.bk-horizontal {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-context-menu.bk-vertical {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-context-menu > .bk-divider {\\n cursor: default;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > .bk-divider {\\n width: 1px;\\n margin: 5px 0;\\n}\\n.bk-root .bk-context-menu.bk-vertical > .bk-divider {\\n height: 1px;\\n margin: 0 5px;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider) {\\n border: 1px solid transparent;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider).bk-active {\\n border-color: #26aae1;\\n}\\n.bk-root .bk-context-menu > :not(.bk-divider):hover {\\n background-color: #f9f9f9;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-bottom-left-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child {\\n border-top-right-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child {\\n border-top-left-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child {\\n border-bottom-left-radius: 4px;\\n border-bottom-right-radius: 4px;\\n}\\n.bk-root .bk-menu {\\n position: absolute;\\n left: 0;\\n width: 100%;\\n z-index: 100;\\n cursor: pointer;\\n font-size: 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n}\\n.bk-root .bk-menu.bk-above {\\n bottom: 100%;\\n}\\n.bk-root .bk-menu.bk-below {\\n top: 100%;\\n}\\n.bk-root .bk-menu > .bk-divider {\\n height: 1px;\\n margin: 7.5px 0;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.bk-root .bk-menu > :not(.bk-divider) {\\n padding: 6px 12px;\\n}\\n.bk-root .bk-menu > :not(.bk-divider):hover,\\n.bk-root .bk-menu > :not(.bk-divider).bk-active {\\n background-color: #e6e6e6;\\n}\\n.bk-root .bk-caret {\\n display: inline-block;\\n vertical-align: middle;\\n width: 0;\\n height: 0;\\n margin: 0 5px;\\n}\\n.bk-root .bk-caret.bk-down {\\n border-top: 4px solid;\\n}\\n.bk-root .bk-caret.bk-up {\\n border-bottom: 4px solid;\\n}\\n.bk-root .bk-caret.bk-down,\\n.bk-root .bk-caret.bk-up {\\n border-right: 4px solid transparent;\\n border-left: 4px solid transparent;\\n}\\n.bk-root .bk-caret.bk-left {\\n border-right: 4px solid;\\n}\\n.bk-root .bk-caret.bk-right {\\n border-left: 4px solid;\\n}\\n.bk-root .bk-caret.bk-left,\\n.bk-root .bk-caret.bk-right {\\n border-top: 4px solid transparent;\\n border-bottom: 4px solid transparent;\\n}\\n\"},\n", - " function _(e,r,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default='\\n.bk-root .bk-tabs-header {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n overflow: hidden;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group {\\n height: auto;\\n margin-right: 5px;\\n}\\n.bk-root .bk-tabs-header .bk-btn-group > .bk-btn {\\n flex-grow: 0;\\n -webkit-flex-grow: 0;\\n height: auto;\\n padding: 4px 4px;\\n}\\n.bk-root .bk-tabs-header .bk-headers-wrapper {\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n overflow: hidden;\\n color: #666666;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper {\\n border-bottom: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper {\\n border-left: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper {\\n border-top: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper {\\n border-right: 1px solid #e6e6e6;\\n}\\n.bk-root .bk-tabs-header.bk-above,\\n.bk-root .bk-tabs-header.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-headers,\\n.bk-root .bk-tabs-header.bk-below .bk-headers {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-tabs-header.bk-left,\\n.bk-root .bk-tabs-header.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-headers,\\n.bk-root .bk-tabs-header.bk-right .bk-headers {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-tabs-header .bk-headers {\\n position: relative;\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n}\\n.bk-root .bk-tabs-header .bk-tab {\\n padding: 4px 8px;\\n border: solid transparent;\\n white-space: nowrap;\\n cursor: pointer;\\n}\\n.bk-root .bk-tabs-header .bk-tab:hover {\\n background-color: #f2f2f2;\\n}\\n.bk-root .bk-tabs-header .bk-tab.bk-active {\\n color: #4d4d4d;\\n background-color: white;\\n border-color: #e6e6e6;\\n}\\n.bk-root .bk-tabs-header .bk-tab .bk-close {\\n margin-left: 10px;\\n}\\n.bk-root .bk-tabs-header.bk-above .bk-tab {\\n border-width: 3px 1px 0px 1px;\\n border-radius: 4px 4px 0 0;\\n}\\n.bk-root .bk-tabs-header.bk-right .bk-tab {\\n border-width: 1px 3px 1px 0px;\\n border-radius: 0 4px 4px 0;\\n}\\n.bk-root .bk-tabs-header.bk-below .bk-tab {\\n border-width: 0px 1px 3px 1px;\\n border-radius: 0 0 4px 4px;\\n}\\n.bk-root .bk-tabs-header.bk-left .bk-tab {\\n border-width: 1px 0px 1px 3px;\\n border-radius: 4px 0 0 4px;\\n}\\n.bk-root .bk-close {\\n display: inline-block;\\n width: 10px;\\n height: 10px;\\n vertical-align: middle;\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n.bk-root .bk-close:hover {\\n background-image: url(\\'data:image/svg+xml;utf8, \\');\\n}\\n'},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const o=e(274);class _ extends o.ColumnView{}i.WidgetBoxView=_,_.__name__=\"WidgetBoxView\";class n extends o.Column{constructor(e){super(e)}static init_WidgetBox(){this.prototype.default_view=_}}i.WidgetBox=n,n.__name__=\"WidgetBox\",n.init_WidgetBox()},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});e(1).__exportStar(e(288),t);var a=e(289);t.Marker=a.Marker;var _=e(290);t.Scatter=_.Scatter},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=e(1),r=e(289),n=i.__importStar(e(238)),s=Math.sqrt(3);function c(e,t){e.rotate(Math.PI/4),a(e,t),e.rotate(-Math.PI/4)}function l(e,t){const o=t*s,i=o/3;e.moveTo(-o/2,-i),e.lineTo(0,0),e.lineTo(o/2,-i),e.lineTo(0,0),e.lineTo(0,t)}function a(e,t){e.moveTo(0,t),e.lineTo(0,-t),e.moveTo(-t,0),e.lineTo(t,0)}function u(e,t){e.moveTo(0,t),e.lineTo(t/1.5,0),e.lineTo(0,-t),e.lineTo(-t/1.5,0),e.closePath()}function d(e,t){const o=t*s,i=o/3;e.moveTo(-t,i),e.lineTo(t,i),e.lineTo(0,i-o),e.closePath()}function v(e,t,o,i,r){a(e,o),c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function _(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function f(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function T(e,t,o,i,r){_(e,t,o,i,r),P(e,t,o,i,r)}function z(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),l(e,o),e.stroke())}function C(e,t,o,i,r){e.arc(0,0,o,0,2*Math.PI,!1),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),c(e,o),e.stroke())}function k(e,t,o,i,r){a(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function m(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function h(e,t,o,i,r){u(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(0,o),e.lineTo(0,-o),e.moveTo(-o/1.5,0),e.lineTo(o/1.5,0),e.stroke())}function q(e,t,o,i,r){m(e,t,o,i,r),P(e,t,o,i,r)}function P(e,t,o,i,r){!function(e,t){e.beginPath(),e.arc(0,0,t/4,0,2*Math.PI,!1),e.closePath()}(e,o),i.set_vectorize(e,t),e.fillStyle=e.strokeStyle,e.fill()}function D(e,t,o,i,r){!function(e,t){const o=t/2,i=s*o;e.moveTo(t,0),e.lineTo(o,-i),e.lineTo(-o,-i),e.lineTo(-t,0),e.lineTo(-o,i),e.lineTo(o,i),e.closePath()}(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function g(e,t,o,i,r){D(e,t,o,i,r),P(e,t,o,i)}function S(e,t,o,i,r){e.rotate(Math.PI),d(e,o),e.rotate(-Math.PI),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function G(e,t,o,i,r){const n=3*o/8,s=[n,n,o,o,n,n,-n,-n,-o,-o,-n,-n],c=[o,n,n,-n,-n,-o,-o,-n,-n,n,n,o];for(e.moveTo(s[0],c[0]),t=1;t<12;t++)e.lineTo(s[t],c[t]);e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function L(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function M(e,t,o,i,r){const n=3*o/8;e.moveTo(-o,-o),e.quadraticCurveTo(0,-n,o,-o),e.quadraticCurveTo(n,0,o,o),e.quadraticCurveTo(0,n,-o,o),e.quadraticCurveTo(-n,0,-o,-o),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function p(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),a(e,o),e.stroke())}function x(e,t,o,i,r){L(e,t,o,i,r),P(e,t,o,i)}function I(e,t,o,i,r){const n=2*o;e.rect(-o,-o,n,n),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.moveTo(-o,o),e.lineTo(o,-o),e.moveTo(-o,-o),e.lineTo(o,o),e.stroke())}function y(e,t,o,i,r){d(e,o),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function X(e,t,o,i,r){y(e,t,o,i,r),P(e,t,o,i)}function H(e,t,o,i,r){const n=o*s,c=n/3,l=3*c/8;e.moveTo(-o,c),e.quadraticCurveTo(0,l,o,c),e.quadraticCurveTo(s*l/2,l/2,0,c-n),e.quadraticCurveTo(-s*l/2,l/2,-o,c),e.closePath(),r.doit&&(r.set_vectorize(e,t),e.fill()),i.doit&&(i.set_vectorize(e,t),e.stroke())}function Y(e,t,o,i,r){!function(e,t){e.moveTo(-t,0),e.lineTo(t,0)}(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function A(e,t,o,i,r){c(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function b(e,t,o,i,r){l(e,o),i.doit&&(i.set_vectorize(e,t),e.stroke())}function w(e,t,o){var i;const n=class extends r.MarkerView{static initClass(){this.prototype._render_one=t,this.prototype.glglyph_cls=o}};n.initClass();const s=((i=class extends r.Marker{static initClass(){this.prototype.default_view=n}}).__name__=e,i);return s.initClass(),s}o.Asterisk=w(\"Asterisk\",v,n.AsteriskGL),o.CircleCross=w(\"CircleCross\",f,n.CircleCrossGL),o.CircleDot=w(\"CircleDot\",T),o.CircleY=w(\"CircleY\",z),o.CircleX=w(\"CircleX\",C,n.CircleXGL),o.Cross=w(\"Cross\",k,n.CrossGL),o.Dash=w(\"Dash\",Y),o.Diamond=w(\"Diamond\",m,n.DiamondGL),o.DiamondCross=w(\"DiamondCross\",h,n.DiamondCrossGL),o.DiamondDot=w(\"DiamondDot\",q),o.Dot=w(\"Dot\",P),o.Hex=w(\"Hex\",D,n.HexGL),o.HexDot=w(\"HexDot\",g),o.InvertedTriangle=w(\"InvertedTriangle\",S,n.InvertedTriangleGL),o.Plus=w(\"Plus\",G),o.Square=w(\"Square\",L,n.SquareGL),o.SquareCross=w(\"SquareCross\",p,n.SquareCrossGL),o.SquareDot=w(\"SquareDot\",x),o.SquarePin=w(\"SquarePin\",M),o.SquareX=w(\"SquareX\",I,n.SquareXGL),o.Triangle=w(\"Triangle\",y,n.TriangleGL),o.TriangleDot=w(\"TriangleDot\",X),o.TrianglePin=w(\"TrianglePin\",H),o.X=w(\"X\",A,n.XGL),o.Y=w(\"Y\",b),o.marker_funcs={asterisk:v,circle:_,circle_cross:f,circle_dot:T,circle_y:z,circle_x:C,cross:k,diamond:m,diamond_dot:q,diamond_cross:h,dot:P,hex:D,hex_dot:g,inverted_triangle:S,plus:G,square:L,square_cross:p,square_dot:x,square_pin:M,square_x:I,triangle:y,triangle_dot:X,triangle_pin:H,dash:Y,x:A,y:b}},\n", - " function _(e,s,i){Object.defineProperty(i,\"__esModule\",{value:!0});const t=e(1),n=e(93),r=e(28),a=t.__importStar(e(101)),_=t.__importStar(e(18)),h=e(9),l=e(88);class c extends n.XYGlyphView{initialize(){super.initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;null!=e&&null!=this.glglyph_cls&&(this.glglyph=new this.glglyph_cls(e.gl,this))}_render(e,s,{sx:i,sy:t,_size:n,_angle:r}){for(const a of s){if(isNaN(i[a]+t[a]+n[a]+r[a]))continue;const s=n[a]/2;e.beginPath(),e.translate(i[a],t[a]),r[a]&&e.rotate(r[a]),this._render_one(e,a,s,this.visuals.line,this.visuals.fill),r[a]&&e.rotate(-r[a]),e.translate(-i[a],-t[a])}}_mask_data(){const e=this.renderer.plot_view.frame.bbox.h_range,s=e.start-this.max_size,i=e.end+this.max_size,[t,n]=this.renderer.xscale.r_invert(s,i),r=this.renderer.plot_view.frame.bbox.v_range,a=r.start-this.max_size,_=r.end+this.max_size,[h,l]=this.renderer.yscale.r_invert(a,_);return this.index.indices({x0:t,x1:n,y0:h,y1:l})}_hit_point(e){const{sx:s,sy:i}=e,t=s-this.max_size,n=s+this.max_size,[r,a]=this.renderer.xscale.r_invert(t,n),_=i-this.max_size,h=i+this.max_size,[c,o]=this.renderer.yscale.r_invert(_,h),x=this.index.indices({x0:r,x1:a,y0:c,y1:o}),d=[];for(const e of x){const t=this._size[e]/2;Math.abs(this.sx[e]-s)<=t&&Math.abs(this.sy[e]-i)<=t&&d.push(e)}return new l.Selection({indices:d})}_hit_span(e){const{sx:s,sy:i}=e,t=this.bounds(),n=this.max_size/2;let r,a,_,h;if(\"h\"==e.direction){_=t.y0,h=t.y1;const e=s-n,i=s+n;[r,a]=this.renderer.xscale.r_invert(e,i)}else{r=t.x0,a=t.x1;const e=i-n,s=i+n;[_,h]=this.renderer.yscale.r_invert(e,s)}const c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_rect(e){const{sx0:s,sx1:i,sy0:t,sy1:n}=e,[r,a]=this.renderer.xscale.r_invert(s,i),[_,h]=this.renderer.yscale.r_invert(t,n),c=[...this.index.indices({x0:r,x1:a,y0:_,y1:h})];return new l.Selection({indices:c})}_hit_poly(e){const{sx:s,sy:i}=e,t=h.range(0,this.sx.length),n=[];for(let e=0,r=t.length;enew r.Range1d,y_range:()=>new r.Range1d})}initialize(){super.initialize(),this.use_map=!0,this.api_key||n.logger.error(\"api_key is required. See https://developers.google.com/maps/documentation/javascript/get-api-key for more information on how to obtain your own.\")}}i.GMapPlot=u,u.__name__=\"GMapPlot\",u.init_GMapPlot()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),o=i.__importStar(e(28)),n=i.__importStar(e(18)),s=e(15),a=e(9),l=e(13),_=e(8),h=e(272),c=e(169),u=e(145),d=e(294),b=e(85),g=e(90),p=e(210),m=e(312);r.PlotView=m.PlotView;class f extends h.LayoutDOM{constructor(e){super(e)}static init_Plot(){this.prototype.default_view=m.PlotView,this.mixins([[\"outline_\",o.Line],[\"background_\",o.Fill],[\"border_\",o.Fill]]),this.define({toolbar:[n.Instance,()=>new d.Toolbar],toolbar_location:[n.Location,\"right\"],toolbar_sticky:[n.Boolean,!0],plot_width:[n.Number,600],plot_height:[n.Number,600],frame_width:[n.Number,null],frame_height:[n.Number,null],title:[n.Any,()=>new c.Title({text:\"\"})],title_location:[n.Location,\"above\"],above:[n.Array,[]],below:[n.Array,[]],left:[n.Array,[]],right:[n.Array,[]],center:[n.Array,[]],renderers:[n.Array,[]],x_range:[n.Instance,()=>new p.DataRange1d],extra_x_ranges:[n.Any,{}],y_range:[n.Instance,()=>new p.DataRange1d],extra_y_ranges:[n.Any,{}],x_scale:[n.Instance,()=>new u.LinearScale],y_scale:[n.Instance,()=>new u.LinearScale],lod_factor:[n.Number,10],lod_interval:[n.Number,300],lod_threshold:[n.Number,2e3],lod_timeout:[n.Number,500],hidpi:[n.Boolean,!0],output_backend:[n.OutputBackend,\"canvas\"],min_border:[n.Number,5],min_border_top:[n.Number,null],min_border_left:[n.Number,null],min_border_bottom:[n.Number,null],min_border_right:[n.Number,null],inner_width:[n.Number],inner_height:[n.Number],outer_width:[n.Number],outer_height:[n.Number],match_aspect:[n.Boolean,!1],aspect_scale:[n.Number,1],reset_policy:[n.ResetPolicy,\"standard\"]}),this.override({outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})}get width(){const e=this.properties.width.get_value();return null!=e?e:this.plot_width}set width(e){this.setv({width:e,plot_width:e})}get height(){const e=this.properties.height.get_value();return null!=e?e:this.plot_height}set height(e){this.setv({height:e,plot_height:e})}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new s.Signal0(this,\"reset\");for(const e of l.values(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of l.values(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;_.isArray(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{a.remove_by(t,t=>t==e)};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new b.ColumnDataSource,r={}){const i=Object.assign(Object.assign({},r),{data_source:t,glyph:e}),o=new g.GlyphRenderer(i);return this.add_renderers(o),o}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:i}=this;return a.concat([e,t,r,i])}}r.Plot=f,f.__name__=\"Plot\",f.init_Plot()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1).__importStar(t(18)),c=t(8),o=t(9),n=t(13),a=t(295),l=t(305),r=t=>{switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null},_=t=>\"tap\"==t||\"pan\"==t;class h extends l.ToolbarBase{constructor(t){super(t)}static init_Toolbar(){this.prototype.default_view=l.ToolbarBaseView,this.define({active_drag:[s.Any,\"auto\"],active_inspect:[s.Any,\"auto\"],active_scroll:[s.Any,\"auto\"],active_tap:[s.Any,\"auto\"],active_multi:[s.Any,null]})}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:i,active_scroll:s,active_tap:c,active_multi:o}=this.properties;this.on_change([t,e,i,s,c,o],()=>this._init_tools())}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof a.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if(c.isArray(this.active_inspect)){const t=o.intersection(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)o.includes(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of n.values(this.gestures)){t.tools=o.sort_by(t.tools,t=>t.default_order);for(const e of t.tools)this.connect(e.properties.active.change,()=>this._active_change(e))}for(const[e,i]of n.entries(this.gestures)){const s=r(e);if(s){const c=this[s];\"auto\"==c?0!=i.tools.length&&_(e)&&t(i.tools[0]):null!=c&&(o.includes(this.tools,c)?t(c):this[s]=null)}}}}i.Toolbar=h,h.__name__=\"Toolbar\",h.init_Toolbar()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const n=e(1),s=e(296),i=e(304),_=n.__importStar(e(18));class c extends s.ButtonToolView{}o.InspectToolView=c,c.__name__=\"InspectToolView\";class l extends s.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}static init_InspectTool(){this.prototype.button_view=i.OnOffButtonView,this.define({toggleable:[_.Boolean,!0]}),this.override({active:!0})}}o.InspectTool=l,l.__name__=\"InspectTool\",l.init_InspectTool()},\n", - " function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),s=i.__importDefault(t(297)),n=t(78),l=t(298),r=t(72),a=i.__importStar(t(18)),u=t(29),_=t(8),h=t(9),c=t(299),m=i.__importDefault(t(300)),d=i.__importDefault(t(301)),p=i.__importDefault(t(284)),f=t(302);class g extends n.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,i=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new f.ContextMenu(o?h.reversed(t):t,{orientation:i,prevent_hide:t=>t.target==this.el})}this._hammer=new s.default(this.el,{touchAction:\"auto\",inputClass:s.default.TouchMouseInput}),this.connect(this.model.change,()=>this.render()),this._hammer.on(\"tap\",t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()}),this._hammer.on(\"press\",()=>this._pressed())}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,d.default,p.default]}css_classes(){return super.css_classes().concat(c.bk_toolbar_button)}render(){r.empty(this.el);const t=this.model.computed_icon;_.isString(t)&&(u.startsWith(t,\"data:image\")?this.el.style.backgroundImage=\"url('\"+t+\"')\":this.el.classList.add(t)),this.el.title=this.model.tooltip,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const{left:e,top:o,right:i,bottom:s}=this.el.getBoundingClientRect(),n=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{right:e,top:o};case\"left\":return{left:i,top:o};case\"above\":return{left:e,top:s};case\"below\":return{left:e,bottom:o}}})();null===(t=this._menu)||void 0===t||t.toggle(n)}}o.ButtonToolButtonView=g,g.__name__=\"ButtonToolButtonView\";class v extends l.ToolView{}o.ButtonToolView=v,v.__name__=\"ButtonToolView\";class b extends l.Tool{constructor(t){super(t)}static init_ButtonTool(){this.internal({disabled:[a.Boolean,!1]})}get tooltip(){return this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=b,b.__name__=\"ButtonTool\",b.init_ButtonTool()},\n", - " function _(t,e,n){\n", - " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", - " * http://hammerjs.github.io/\n", - " *\n", - " * Copyright (c) 2016 Jorik Tangelder;\n", - " * Licensed under the MIT license */\n", - " !function(t,n,i,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=n.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,n){return setTimeout(y(t,n),e)}function p(t,e,n){return!!Array.isArray(t)&&(f(t,n[e],n),!0)}function f(t,e,n){var i;if(t)if(t.forEach)t.forEach(e,n);else if(void 0!==t.length)for(i=0;i\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,i),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(null==t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),n=1;n-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,n){if(t.indexOf&&!n)return t.indexOf(e);for(var i=0;in[e]})):i.sort()),i}function D(t,e){for(var n,i,r=e[0].toUpperCase()+e.slice(1),s=0;s1&&!n.firstMultiple?n.firstMultiple=W(e):1===r&&(n.firstMultiple=!1);var s=n.firstInput,o=n.firstMultiple,a=o?o.center:s.center,h=e.center=q(i);e.timeStamp=c(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=U(a,h),e.distance=L(a,h),function(t,e){var n=e.center,i=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},i=t.offsetDelta={x:n.x,y:n.y});e.deltaX=r.x+(n.x-i.x),e.deltaY=r.y+(n.y-i.y)}(n,e),e.offsetDirection=H(e.deltaX,e.deltaY);var l=k(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=l.x,e.overallVelocityY=l.y,e.overallVelocity=u(l.x)>u(l.y)?l.x:l.y,e.scale=o?(p=o.pointers,f=i,L(f[0],f[1],X)/L(p[0],p[1],X)):1,e.rotation=o?function(t,e){return U(e[1],e[0],X)+U(t[1],t[0],X)}(o.pointers,i):0,e.maxPointers=n.prevInput?e.pointers.length>n.prevInput.maxPointers?e.pointers.length:n.prevInput.maxPointers:e.pointers.length,function(t,e){var n,i,r,s,o=t.lastInterval||e,a=e.timeStamp-o.timeStamp;if(8!=e.eventType&&(a>25||void 0===o.velocity)){var h=e.deltaX-o.deltaX,c=e.deltaY-o.deltaY,l=k(a,h,c);i=l.x,r=l.y,n=u(l.x)>u(l.y)?l.x:l.y,s=H(h,c),t.lastInterval=e}else n=o.velocity,i=o.velocityX,r=o.velocityY,s=o.direction;e.velocity=n,e.velocityX=i,e.velocityY=r,e.direction=s}(n,e);var p,f;var v=t.element;_(e.srcEvent.target,v)&&(v=e.srcEvent.target);e.target=v}(t,n),t.emit(\"hammer.input\",n),t.recognize(n),t.session.prevInput=n}function W(t){for(var e=[],n=0;n=u(e)?t<0?2:4:e<0?8:16}function L(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return Math.sqrt(i*i+r*r)}function U(t,e,n){n||(n=N);var i=e[n[0]]-t[n[0]],r=e[n[1]]-t[n[1]];return 180*Math.atan2(r,i)/Math.PI}Y.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var V={mousedown:1,mousemove:2,mouseup:4};function j(){this.evEl=\"mousedown\",this.evWin=\"mousemove mouseup\",this.pressed=!1,Y.apply(this,arguments)}g(j,Y,{handler:function(t){var e=V[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:\"mouse\",srcEvent:t}))}});var G={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Z={2:\"touch\",3:\"pen\",4:\"mouse\",5:\"kinect\"},B=\"pointerdown\",$=\"pointermove pointerup pointercancel\";function J(){this.evEl=B,this.evWin=$,Y.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(B=\"MSPointerDown\",$=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(J,Y,{handler:function(t){var e=this.store,n=!1,i=t.type.toLowerCase().replace(\"ms\",\"\"),r=G[i],s=Z[t.pointerType]||t.pointerType,o=\"touch\"==s,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(n=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),n&&e.splice(a,1))}});var K={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function Q(){this.evTarget=\"touchstart\",this.evWin=\"touchstart touchmove touchend touchcancel\",this.started=!1,Y.apply(this,arguments)}function tt(t,e){var n=x(t.touches),i=x(t.changedTouches);return 12&e&&(n=P(n.concat(i),\"identifier\",!0)),[n,i]}g(Q,Y,{handler:function(t){var e=K[t.type];if(1===e&&(this.started=!0),this.started){var n=tt.call(this,t,e);12&e&&n[0].length-n[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:n[0],changedPointers:n[1],pointerType:\"touch\",srcEvent:t})}}});var et={touchstart:1,touchmove:2,touchend:4,touchcancel:8};function nt(){this.evTarget=\"touchstart touchmove touchend touchcancel\",this.targetIds={},Y.apply(this,arguments)}function it(t,e){var n=x(t.touches),i=this.targetIds;if(3&e&&1===n.length)return i[n[0].identifier]=!0,[n,n];var r,s,o=x(t.changedTouches),a=[],h=this.target;if(s=n.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&i.splice(t,1)}),2500)}}function at(t){for(var e=t.srcEvent.clientX,n=t.srcEvent.clientY,i=0;i-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,n=this.state;function i(n){e.manager.emit(n,t)}n<8&&i(e.options.event+ft(n)),i(e.options.event),t.additionalEvent&&i(t.additionalEvent),n>=8&&i(e.options.event+ft(n))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=32},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return mt.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=vt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(yt,mt,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(Tt,pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[\"auto\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distancee.time;if(this._input=t,!i||!n||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return 32},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Et,mt,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[\"none\"]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(It,mt,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return gt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,n=this.options.direction;return 30&n?e=t.overallVelocity:6&n?e=t.overallVelocityX:24&n&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&n&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=vt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(At,pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[\"manipulation\"]},process:function(t){var e=this.options,n=t.pointers.length===e.pointers,i=t.distance{this.model.active?this.activate():this.deactivate()})}activate(){}deactivate(){}}i.ToolView=r,r.__name__=\"ToolView\";class _ extends a.Model{constructor(t){super(t)}static init_Tool(){this.prototype._known_aliases=new Map,this.internal({active:[n.Boolean,!1]})}get synthetic_renderers(){return[]}_get_dim_tooltip(t,e){switch(e){case\"width\":return t+\" (x-axis)\";case\"height\":return t+\" (y-axis)\";case\"both\":return t}}_get_dim_limits([t,e],[i,n],o,a){const r=o.bbox.h_range;let _;\"width\"==a||\"both\"==a?(_=[s.min([t,i]),s.max([t,i])],_=[s.max([_[0],r.start]),s.min([_[1],r.end])]):_=[r.start,r.end];const l=o.bbox.v_range;let c;return\"height\"==a||\"both\"==a?(c=[s.min([e,n]),s.max([e,n])],c=[s.max([c[0],l.start]),s.min([c[1],l.end])]):c=[l.start,l.end],[_,c]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}i.Tool=_,_.__name__=\"Tool\",_.init_Tool()},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0}),t.bk_toolbar=\"bk-toolbar\",t.bk_toolbar_hidden=\"bk-toolbar-hidden\",t.bk_toolbar_button=\"bk-toolbar-button\",t.bk_button_bar=\"bk-button-bar\",t.bk_toolbar_button_custom_action=\"bk-toolbar-button-custom-action\"},\n", - " function _(o,b,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-toolbar-hidden {\\n visibility: hidden;\\n opacity: 0;\\n transition: visibility 0.3s linear, opacity 0.3s linear;\\n}\\n.bk-root .bk-toolbar,\\n.bk-root .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: center;\\n -webkit-align-items: center;\\n user-select: none;\\n -ms-user-select: none;\\n -moz-user-select: none;\\n -webkit-user-select: none;\\n}\\n.bk-root .bk-toolbar .bk-logo {\\n flex-shrink: 0;\\n -webkit-flex-shrink: 0;\\n}\\n.bk-root .bk-toolbar.bk-above,\\n.bk-root .bk-toolbar.bk-below {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n justify-content: flex-end;\\n -webkit-justify-content: flex-end;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-logo,\\n.bk-root .bk-toolbar.bk-below .bk-logo {\\n order: 1;\\n -webkit-order: 1;\\n margin-left: 5px;\\n margin-right: 0px;\\n}\\n.bk-root .bk-toolbar.bk-left,\\n.bk-root .bk-toolbar.bk-right {\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n justify-content: flex-start;\\n -webkit-justify-content: flex-start;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar {\\n display: flex;\\n display: -webkit-flex;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-logo,\\n.bk-root .bk-toolbar.bk-right .bk-logo {\\n order: 0;\\n -webkit-order: 0;\\n margin-bottom: 5px;\\n margin-top: 0px;\\n}\\n.bk-root .bk-toolbar-button {\\n width: 30px;\\n height: 30px;\\n cursor: pointer;\\n background-size: 60% 60%;\\n background-origin: border-box;\\n background-color: transparent;\\n background-repeat: no-repeat;\\n background-position: center center;\\n}\\n.bk-root .bk-toolbar-button:hover {\\n background-color: rgba(192, 192, 192, 0.15);\\n}\\n.bk-root .bk-toolbar-button:focus {\\n outline: none;\\n}\\n.bk-root .bk-toolbar-button::-moz-focus-inner {\\n border: 0;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button {\\n border-bottom: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-toolbar-button.bk-active {\\n border-bottom-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button {\\n border-top: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-below .bk-toolbar-button.bk-active {\\n border-top-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button {\\n border-left: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-right .bk-toolbar-button.bk-active {\\n border-left-color: #26aae1;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button {\\n border-right: 2px solid transparent;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-toolbar-button.bk-active {\\n border-right-color: #26aae1;\\n}\\n.bk-root .bk-button-bar + .bk-button-bar:before {\\n content: \" \";\\n display: inline-block;\\n background-color: lightgray;\\n}\\n.bk-root .bk-toolbar.bk-above .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-below .bk-button-bar + .bk-button-bar:before {\\n height: 10px;\\n width: 1px;\\n}\\n.bk-root .bk-toolbar.bk-left .bk-button-bar + .bk-button-bar:before,\\n.bk-root .bk-toolbar.bk-right .bk-button-bar + .bk-button-bar:before {\\n height: 1px;\\n width: 10px;\\n}\\n'},\n", - " function _(A,g,C){Object.defineProperty(C,\"__esModule\",{value:!0});C.default='\\n.bk-root .bk-tool-icon-copy-to-clipboard {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUSDBoBvcHQeQAAAG9JREFUWMNjXLhsJcNAAiaGAQYwB/xHwh/Q+ITEkfHQCwEWND4jmeb8H/JpgBwfI6cNBhLSEkqaGXRpgFRAcZoZsmlg1AGjDhh1wKgDRh0w6gCaVcf/R2wIkNqw+D9s0wADvUNiyIYA47BJAwPuAAAj/Cjd0TCN6wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-replace-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxokK3gniQAAAHpJREFUWMNjXLhsJcNAAiaGAQajDhhwB7DgEP+PxmeksvjgDwFcLmYkUh2hkBj8IcBIZXsYh1w2/I8v3sgAOM0bLYhGc8GgrwuICgldfQO88pcvXvg/aOuCUQeM5oLRuoCFCJcTbOMh5XOiW0JDNhdQS3y0IBp1ABwAAF8KGrhC1Eg6AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-append-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkZWD04WwAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAoUlEQVRYw+1WQQ6AIAwrhO8Y/bIXEz9jIMSDr8ETCUEPQzA4pMeFLKNbu4l5WR0CDOMEALBGIzMuQIBEZQjPgP9JLjwTfBjY9sO9lZsFA9IafZng3BlIyVefgd8XQFZBAWe8jfNxwsDhir6rzoCiPiy1K+J8/FRQemv2XfAdFcQ9znU4Viqg9ta1qYJ+D1BnAIBrkgGVOrXNqUA9rbyZm/AEzFh4jEeY/soAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-intersect-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxkrkOpp2wAAAPhJREFUWMPtV1EKwjAMTUavI3oawR/vtn5srJdREfzwMvHHQlcT2mpdMzFfWxiP5r2+JMN+mAiCOB72CABgR1cln4oOGocJnuMTSxWk8jMm7OggYkYXA9gPE3uyd8NXHONJ+eYMdE/NqCJmEZ5ZqlJJ4sUksKN7cYSaPoCZFWR1QI+Xm1fBACU63Cw22x0AAJxudwrffVwvZ+JmQdAHZkw0d4EpAMCw8k87pMdbnwtizQumJYv3nwV6XOA1qbUT/oQLUJgFRbsiNwFVucBIlyR3p0tdMp+XmFjfLKi1LatyAXtCRjPWBdL3Ke3VuACJKFfDr/xFN2fgAR/Go0qaLlmEAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-subtract-mode {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUFFxgsF5XNOQAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAABFUlEQVRYw9VWUQqDMAxNpWfxQxD1MoP97G7zQ5mH2RTZYLtM9lWoMbXtxLXNX4OG9r28l4hrd0PQoqxqAACYpxH25C/nkwCHyCBwSPoS09k1T5Fo+4EiExcC4v584xGFmyIXHBLRISAVZyZufUPVa4rcrwmPDgr93ylo+2GliLRUYHK6th/o/6r7nfLpqaCsagEA8Hh9FmcNKeRmgeYDC+SCq0B6FFi8/BcV6BdR9cL3gCv3ijPKOacsn3rBEcjmaVxpfGcg4wHxzgJJnc6241Hn23DERFRAu1bNcWa3Q0uXi62XR6sCaWoSejbtdLYmU3kTEunNgj0bUbQqYG/IcMaqwPS9jftoVCAQ0ZVDJwf0zQdH4AsyW6fpQu4YegAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-clear-selection {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5AUGEhcuan3d3wAAAoRJREFUWMPtlzFP3EAQhd+b3TNSzg0N5TWXLkJQUUaKhIQ4fgP/g5ArrriE/I3opEgRrZtIVJR0FJQ010SioUmEZHtnUpwN9gWHGA5BJCy58MraffvmfZ41v3z9hqe8BE98vQh4cgG+Ydzmnrng8efvQJNi/uN7dznx/B3ggtfhf4ehNdUttRzBDIm/2VTiiWCG1HK0nc+3UWtq8BQIiEEakEQOADBIA4QCQmBqoHBhFNR27ikQSmGdYCdTqCpEHMDZmEKRWUBEv1gBDg5SzRJnpopILWICgWuRYflLamuzxB2BmtYqSRIka5VWU8QduXO+1hRc5YZu5GAwmP2ZJzND0IBu5HCV2+NQcAhAVRsnC2IbPzPdSjzd6to6VtfWkXi6YLaVWr7xoAwkfpb8MnC3SH7rKSMBe4M0jA/OTicFIbtCGRIyNbURhcf3ErCd6YwA1m0HgAxhw1NGQnlXBHG4kylVlSJuH0RfIP2CkL2I/qS1gIAAQiBl1QwFggIHtyxgrxK5PgyfC0JWKoT0HLh8LwoietB4TYKaIl7yeNURxB05UtMxDOcVQlZIrlRKdK6m47gjR/fuBRQihyLArtNeJD50Izcx2Eczu7iFkIug4VM3cpOr3MKDekFED0fWUHv9Zq0kpLnridjhY3XDg7NTN0jDrhO3X7O9Wg7wwyANu4mnayNg3gmbu0tCNoUyBNGv2l4rB9EXynA7082FOxAQLhU6rQVO9T2AvWowFToNCJcPORGxIRcnpjZSKATSU9NxvOQnAPArDSaQoUKnNI4iufkGtD4P3EHIcWZhz4HLceSOyrR3Izf5memPAL2cX3yhAkonysZVaWLBkd9dw1Ivv2a/AYPkK+ty1U1DAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-box-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg0kduFrowAAAIdJREFUWMPtVtEKwCAI9KL//4e9DPZ3+wP3KgOjNZouFYI4C8q7s7DtB1lGIeMoRMRinCLXg/ML3EcFqpjjloOyZxRntxpwQ8HsgHYARKFAtSFrCg3TCdMFCE1BuuALEXJLjC4qENsFVXCESZw38/kWLOkC/K4PcOc/Hj03WkoDT3EaWW9egQul6CUbq90JTwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-box-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg82t254aQAAAkBJREFUWMPN11+E1FEUB/DPTFn2qaeIpcSwr5NlUyJiKWVXWUqvlUh/iE3RY9mUekkPPURtLKNRrFJEeuphGfUUaVliiX1aVjGs6aG7+XX9ZnZ+d2fTl2vmnHvPPfeee/79Sk+may2/UQq/q7Qu+bAJoxjHIKqB/wlfUMcMVqI9bLZ+DGIKwzlzQ2GcxCx2xwvKOUKlaHTiX8bHNspjDONHkOmJBW5jIof/FvPh/06MZOb6cRc7cGn1AKUE5cdzlM/gAr5F/O24H3xkFRfxAbVygvK+cIsspjGWo1zgjeFpxL+BvnLw7laBA4xjIFJwrgu52DoVjKdY4HBEX8dSF3JLYe1fe6UcYCii3xWQjdfuSTnAtoheKCC7GNED5Zx4L4qt61jbTLHA94geKSC7P7ZeShQ0Inoi1IJuEOeORooFXkV0FZNdZs5qvFfKAeqYy7nZ6yg//HG0MBfffh71lFrQDCW2EvEP4mt4okZUDftz9rmGZkotmMxJRtlisy+MTniAWrty3AlXw0hFM2TD89l+oNsoOJXjbIs4EpqNtTCLXbiZ0g+M4mFObj8U3vsNjoZCVcmk60ZwthpepLZkB/AsivWfOJZxtpUQHfWib7KWDwzjeegBZJSdKFiE2qJTFFTwElsi/unQ/awXrU4WGMD7nOJxBY/1EO2iYConq93CHT1GOwucjdqnRyFz+VcHmMNefMY9nNkA3SWUOoXhQviSWQ4huLIRFlirFixnQq/XaKXUgg2xQNGv4V7x/RcW+AXPB3h7H1PaiQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-zoom-in {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsUBmL8iQAAA2JJREFUWMO9l12IlFUYx3//MzPrLpSjkm5oN4FFIWVEl66IQlFYwtLOzozsjHdGRSCRF0sfBEXRVV0FQuQiLm5CZNBFgRRaRLVFhbJ2EdiN5gbK7toObTPn6eYdPTvNzPvOBz5Xh/ec5/n/n89zXtEHmZqeSXSuXBz/3zfdKvBWJHQrwZuRcP0El+QkbQXeBX6WZEgm6TtJk5lM5o4Lc+cV6qpf4Ga20Tm338zeATItVK9Ker6yvPzp4NDQ3+XieGsCU9MzTYumGbhz7m4ze9/MHgvBgItACrgfGAj2jgAvAYs3wlEujjc13kii8YyZrXXOfWhmo9GnFUlvOOemarVapVqtkslksmb2KjARqL62ecuWN9NxbRInzrldAXhV0uFSIfdew7G/gNLU9MwS8CwSmE3Oz88fcXG5blfpqVRq0Ix8VIAAX0XgrVL7HDCHGcCaWrV60LUBN8Dae58aQIxEqcA592I9M610JL0cpG/U9TIHJNKY3RV5z0R+7Nd4HZ0P1g/2RMBuegLAsRMnb4vT8d5vqKfMzOgtAlADrkmqGywmiMBTwfr3dC9j1Xv/r6Tvg/5/5ejxE6cO7M9faVbQZrYNOFSPmqQvVo9FKexvi5uWX58943aM7DwAfBDY+FbSCxP5sdkGx55GeguzrUEXPaSo2pFkAbiSZQCAzZJOmdkjwd6SpB/M7KykQTPbA2wDhoIzRzcNDx9MJwGNIXdJ0mEzmwbujL7dbma7gd03A7lKfnTOvf74nl0r6bonTUbujRSUCrm2d4L3/kvn3JPe+8+BDW2i9o+kT7z3kxP5sYsA6W47oE64TsR7P9tQL4vA2mh9WdIscKxUyJ0M7aR7acOGzikD65EQLEjaa2ZXzMwDFeB6qZBbbLTRE4EGeSaozNOZgYFf8qP7lmIvs354n0qlHpB0T7B9Ogl4IgJJrmjv/SiQjbrkD+BMUkfSbYATPdckrTOzkciWAXOlQu5cYgLdPEIapud9wMOR9zVJH3ViKx333mtHMJvNuoWFhZ3A+ojMcja77njXBEKwJJfTcqUyCIQ34Mf7nnh0paMnXacFuGoC1mr3AtuDfLzd8Zuyl+rfuGn4HLAD+Az4qZQf+61TAj0Noj8vX6oC35SL43u7teG6rf5+iXppwW7/JUL5D03qaFRvvUe+AAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-zoom-out {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgsHgty9VwAAA0FJREFUWMO9l09oXFUUxn/fmXlpItppi22k7UJBRSlVkCytSAuKUloIdjKT0El3FXVXdVFKRVAQV7qQohsNwdA0UFvBhYtqUVyIVlRaogtFQVq7qSTVjA3z3nHzBq/jvPmTN/Ss7rv3nvN99/y794kByMzcfE/7picn/jenmwWeRUI3E7wdCRskuCSTdDfwBvCtJEdySV9KOhpF0e0/LF5SqKtBgbv7ZjObcvfXgShD9Zqk5+orKx8Oj4z8NT05kU1gZm6+bdK0Azezu9z9hLs/HoIBvwAF4H5gKFh7B3gBWFY3460kWve4+3oze9fdx9OpVUmvmNlMHMf1RqNBFEUldz8OHAxUX9q6bduryut+Sfvc/Wz62ZD0fK1afjND9y3gGSRwv1GMojstTxUUCoVhdyopEYDzKXjWwZ4FFnEHWBc3Goet00m7lZlZYQixKw0FZnakGZksHUnHgvCN5/KARBH37enpOVg58H13HV0Kxg/kIuD/ngSA2ZMLt3bTSZJkUzNk7k4+D0AM/CGpaXCyBw/sC8Y/qZd2GpZiuL9YLN4Sx/HpoP5/c/exQ1OVq+1yyt13SLoArEsJnMjlgfOffvK3u58Kprab2QezJxfG2iTzUzI70wRPG9jbmpmb95SNB9mpzp7/j2yVdNbdx4K565K+cvfPJQ27+x5gBzAS7Hlvy+jo4WIvoC3kWpcvS3rR3eeAO9K529x9N7C7zX6AC2b28hN7Hl1Vt44niVq13LUjmtlYkiQfA5s6eO+GpDNJkhw9NFX5ueNt2ARodyF1IHIN2JiOl4H16fiKpK+B2Vq1vBAqFAf4IJkGNiIhWJK0192vunsC1IE/a9XycquNXARa5OnApeeioaHvKuP7r3dTGsiLqFAo7JR0T7B8rhfwXARa2us4UEqr5Ffgs151i/08oTNKdIO770ptObBYq5Yv5ibQq/sl3Qc8lJ4+lnSqH1vFfp9koZRKJVtaWnqkWXqSVkqlDe+vmUDWpZMlK/X6MBDegKf3P/nYaj8ErN9fqZBYEsf3Ag8G8Xit33BaniTcvGX0IvAw8BHwTa1y4Md+CeRqRL9fudwAvpienNi7Vhu21uwflOT+L+i1X2TJP57iUvUFtHWsAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-help {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABltpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPHRpZmY6Q29tcHJlc3Npb24+NTwvdGlmZjpDb21wcmVzc2lvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzI8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MzI8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMzIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDNDIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDpBODVDNDBDMTIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpBODVDNDBDMjIwQjMxMUU0ODREQUYzNzM5QTM2MjBCRTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgPC94bXBNTTpEZXJpdmVkRnJvbT4KICAgICAgICAgPGRjOnN1YmplY3Q+CiAgICAgICAgICAgIDxyZGY6U2VxLz4KICAgICAgICAgPC9kYzpzdWJqZWN0PgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNjoxMToyOCAxMToxMTo4MjwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGl4ZWxtYXRvciAzLjY8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cphjt2AAAAT7SURBVFgJxRdbaFxFdGb2bhui227BWrsVKYgf2kJUbP9EUPuzEB803WTXJjH61Q/7Ya1+CMYKEVTsh4J/EpvY7BoabUiNiA8s1p+4KIhpoUUEselHqyS76TbZ3HuP58ydc3d2u4+IkQxczpz3mZkzZ86VYpXjvenpjZsLhUcliE4AuUuASAgptmt1EFdwPiclzIIUUwubNn17OJlcXo1p2UpodHRiux9xB1Eug1+slbzhFxGOKc851tu7/0oznYYBDA8Pt0U2tL8KQryIq2tvZqQhD0QJHRz3yqWhgYGBpXpydQMwqz6NCnurleCSADkJEfgKfOePqL80R/wV1ZaQyr1LenKfkPCkEPKeaj0xg7vxVL3duCmA0Vyuw/fl52hgBxsBED+h4Cv9z3R/zbRm8MTJTx7HQN7GQB6w5C4L4SX7M5lfLBpurjXMyvNIShiyi0l1pL8n9b7EDGPR8fHxzSsQ6XDB3618/xqo6Pk25V5MpVJllgHM1BO58RdQ612kOYZ+GXdij70TYQB05mpj+1kU5G2fB+l3PZtOf8NGx6ambnMXb3yAxg8wjSEG6OKKR9oicBQD+ZvpH2Wzj0lQpxCPG9qMv1x6hHNCsSAlHM7ZOa682vlI9tRDbvHGbD3nZAPpDoD/3JIrLpAs26UFkC3EMUA99hpfGtEBfJjNJnS2Gwnadnvl+Xw+iuc3DAJuNyIaSCHpilVldyDjjUxj3WDZIAhxhHHyRcdNuA7AAfUaXzVKODpzFiZ4/uLvh5G+m2no+C/pyIf7MqlEJB7bpqR6nXkEUfbeawuLaZsW2ISfNQ2vtaktQlGFQyIVGT0o2+2EC4iQNGwjBIN9qdQ5Qg4mk4X4rW3vCClLtowE2FOFUxKDfNmiZci3ovKKRFPh4FK9q4Zbdr+lKKJiA13TcHR2dmLBgdmQ0GAS2MZaEowY+XbAk09IvgtYZGp16SyvFhaHcIUh645t8T9DBCcnz5zZ4hZLu3DzK2QlL1QQa0Y+pHiJKPSuOGj3PmZTheM5w2TwqBxnvBZOTk7G5gvXJ5Aelms8wnJURL+olSWcfEhf6gDoUXPMq6ZlqbzWU2pE+3hi4s6F68tfIj9cBMlikr7Z0/P0b/X0yIcUXsDCF1WhtL4OROHaXk+xlkbV0Cu732Nmhc4peaWSg73pA8dq5RkvO37ldUTfXCKZv2q45MkhvG87WQEzpCCUSvV1d9GONBy3lMvgKSwrZig8gjAietWY0QriylO2jIo4yVbOSb7KB/qmI9BPKjHpSSXYauRyn92Nq9/Kcrj13x3s3v8D481glQ/0raiNYgX9njPSBOImbrHZePl+tfFmc9sH+Xaoh8NjOKSVdDMhjjYzQLy+dFceH5+IJQf9VYXX4tROg4ZFU8m31M3mfPEqUoJqCGJfvWpo2xnNfdrhC28n06SCeSzNZxlvBINGRXCtKS7EY1uV6V7HWAm38y1cXaXsMcOCvr9ySPj+af7A1U2HJXHzVNvUXVLIGyPf+jV0pf8GHoN+TLAyPkidTCi2RpPApmnR0Bd1zGRaB/B8Oj2HSw7LLbVR1MmskW8RdEWVXSJf3JbpAMgRtc4IZoxTh9qotQjCasm46M0YX9pV1VmbpvRH5OwwgdRtSg2vKaAz/1dNKVtb17Y8DCL4HVufHxMOYl1/zTgIgiYvBnFKfaNp3YjTdPz3n9Na8//X7/k/O1tdwopcZlcAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-hover {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4oVHp0SwAAAQJJREFUWMPtlsENgzAMRb8RQ5VJItFDOgaZAMaAA0iZpN3KPZSoEEHSQBCViI/G8pfNt/KAFFcPshPdoAGgZkYVVYjQAFCyFLN8tlAbXRwAxp61nc9XCkGERpZCxRDvBl0zoxp7K98GAACxxH29srNNmPsK2l7zHoHHXZDr+/9vwDfB3kgeSB5IHkgeOH0DmesJjSXi6pUvkYt5u9teVy6aWREDM0D0BRvmGRV5N6DsQkMzI64FidtI5t3AOKWaFhuioY8dlYf9TO1PREUh/9HVeAqzIThHgWZ6MuNmC1jiL1mK4pAzlKUojEmNsxcmL0J60tazWjLZFpClPbd9BMJfL95145YajN5RHQAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-crosshair {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADEUlEQVRYR81XXVIaQRCeHqug8CXmBNETaE4gniDwIgpVspxAbxC9ATkBkCpQ8gKeQDiB5AQxNyAvUlrldr7eHxyGXZi1rMJ5opbp7m++7un+htSGF204vsoMoNXrlzSpfWa1oxQfhAegCZGaEtPorHo8znIoJwCt6+td8uk7ApUQCIHTF4BNAWzImq8ap6cP68CsBdDp9i9ZqXM7ML79g/EnCWD+jgMKENKqWT+tXK0CkQqgNRjs0OxpQIqKhoMxaG6/6JeRnK7T6yO2UvVqhYSlLX+ryORfgKn9ORDFIy7ky41yGcwsr0QAQfDH5zucOswx819fs4egI9OFCcD8DjBF7VNbEX0JzdWEt3NHSSASAcCxBDqMgt/623kvyTgNgNjJIfTjk4D4FqaJR1715MjmYAmA5Bx3AwUXQL+t105KaTlcBSC26XRvhjEIoLiq1yqXpr8FAGG16/ug4IT27fxBWu7EiQuAiImJpEMKE6nYM30uAIDDttSUOPfJP7JzbjPhAiBIh9QE67vIvoOi9WJfCwDavf40ulpjbCqmUf+W753ezURuh7Dg1SqflwAEHU6pgfyBq9Y4qx0LG++2fnZ/eUzcstmdM2AWH+jfc+liWdBJfSENf8Lifi3GVwC9mybOfi5dzatWVrbbLIHNva8p5h/16gkaFiLGGxbufkoE6XguwePiXLF3XmMfCUCUAqtKXU7sumd1CowOuJEi3Pg1FBpjitIGhyvVSfvmjci6ZR+rFQfDiPVE2jFYeICQ+PoewwjC5h7CZld6DBdyu6nDSKgzOyIMhmhK5TTqXYbRorZYM46TmpKAAOrGWwSJJekSB1yqJNOzp1Gs7YJ0EDeySDIMtJbQHh6Kf/uFfNFZkolJICRmz0P8DKWZuIG2g1hpok+Mk0Qphs0h9lzMtWRoNvYLuVImUWrmPJDlBKeRBDfATGOpHkhw670QSHWGLLckmF1PTsMlYqMJpyUbiO0weiMMceqLVTcotnMCYAYJJbcuQrVgZFP0NOOJYpr62pf3AmrHfWUG4O7abefGAfwH7EXSMJafOlYAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-lasso-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgwlGP1qdAAABMBJREFUWMO9V1uIVVUY/r61z57ZMx4DnbzgkbQXL5iCJphlWdpIGY4jpFBkEiU9ZNaDRRcITcIwMwgxoQtU2IMXdAZfMjFvpERXYiSbysyBEXFmyuHMnLP32uvrwT2xnY5nxvHQ93Jg7fWv71/r//7L4a59TRgqJk+Z6v3a+sv0OI5nk5wu6VaSVZImAThHsgjgrKTvM5nMUWvtmf5n8HodCIKgOgzDhc65pSTrJQWDsSNpJX1ljHnDOfdT37oZLLHv+8OMMasKhcIJ59xHAJYMlhwAJGUAzJfUTHLFuFzOG5QDU6dNMyQfs9Yedc5tBpAD4IYYNQGoBrDtQnt7/b0LFrJsCHzfn2itfQfAnZLiazytA3AaQAuAiwDaEgeNpGkkswAWSBqRONB38b88z5uTKePt6iiKXkk8jq+iJC5LOmiMaTLGHLPWhmWeHr7vV0dRtATAapAzIVmSo51zyzIlbm2stesFPA6pKk0r6Ryg93y/ek8YFvPOOTg3cDSiKCoC2OP7/rEoirYm4rUkF12lAWNM1lr7lqQn0+QA8gI2jBg5cj6Aj8OwmB+KAKIoukhyp6SRJAUgl0ndPLDWPi9pJQCbuviXvu+/GIZhW1dnJ24UJFuTjCCA2ADA8sYGWmsXS3qmL94kDYAtkh4Nw7ANlQJ5U6INT1KrAYC9zQdykl7nFSj5fXp5Y8NWVBhy7mUAjqShMYdMXV2dJ2klyRwAJ8lIeuGWCRMP7N7frEqSG2OmAFhKshNAp5wrmO7u7jEAngPQm1S2z2pqapr+OPt7XEly0oxwzq2RdFmSD2AMgKKJouhhAL4kA+Cs53l7e3t7uytJHgRBreTWkXwkKVJnJD0B4GAGwIJE9R6AFufc6UqSZ7PZbD6ff5dkA4CQZEHSqwAOISmXtwGIE+F1SeqqIP8d+Xz+C0mLJYWSAODteXffczjdDQNJ0BWMCoLg5gqIbRTJNwHsljQhUb0luWPM2LE7Thw/9m/5NCT/TByxAOYWi8X6/gdWV1dnfN8fNRBxJpMZTXKdc+6IpFVJWAEgkvSJpA0X2tvtVTaSjgOYBCAEEADYSHK87/sfhmEYA9gShuEDkgzJHyWtB/B1irQ2juP7ADxkrX0wOUOpzmdpzEY590HJ7Ni1r2kSyZOSiv2+hSRjSTXp/QAukzySNJOJkmalyNIl10hqMcasdc61XDNcQRD8BnITgNp+36r6kfcNFMMlLQGwTNLMEuQGQBfJl2bdPru+HDkAZAqFQux53jZHEsC6aw0eg2gylNRBcqcx5v04ji999+03AwsWAOI4Lsy9a94WkisAnE5a5WCJYwCfA1g7LJudI2lTHMeXBm1faiQzxkyRtF3S5CTupeAB+KG2tnZFT0/P30NO2VKLzrmfAbwGMipjG5Oc0dPTc0Md05SZ5U4Q2FxChErtEYD7jTGNQ3UgM8Asv90Yc9I5LSKRlXSI5CxJa0jWSALJjKRnAewfkniT+vwf7N7fXHK9rq7O7+jo+BTA/NRrdBpjnnLOnUrvXd7YMPQXSBunneno6IhIHgYwW1JtkgmBpBkATlVMAwOk3nFJ+VSoqgCMr6gIy2FcLtdKspAedyQN/98caDt/3kpyabUmf8WvG/8A1vODTBVE/0MAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-pan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4lKssI9gAAAOtJREFUWMPVll0KwyAMgNPgoc0JzDX2Mtgp3csKErSamGabIEUo/T6bHz0ezxdsjPJ5kvUDaROem7VJAp3gufkbtwtI+JYEOsHNEugIN0mgM1wtsVoF1MnyKtZHZBW4DVxoMh6jaAW0MTfnBAbALyUwCD6UwEB4VyJN4FXx4aqUAACgFLjzrsRP9AECAP4Cm88QtJeJrGivdeNdPpko+j1H7XzUB+6WYHmo4eDk4wj41XFMEfBZGXpK0F/eB+QhVcXslVo7i6eANjF5NYSojCN7wi05MJNgbfKiMaPZA75TBVKCrWWbnGrb3DPePZ9Bcbe/QecAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-xpan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4X4hxZdgAAAMpJREFUWMPtlsEKwjAMhr/pwOOedINJe/PobWXCfAIvgo/nA4heOiilZQqN2yE5lpD/I38SWt3uD9aMHSuHAiiAAmwaYCqoM/0KMABtQYDW11wEaHyiEei28bWb8LGOkk5C4iEEgE11YBQWDyHGuAMD0CeS30IQPfACbC3o+Vd2bOIOWMCtoO1mC+ap3CfmoCokFs/SZd6E0ILjnzrhvFbyEJ2FIZzXyB6iZ3AkjITn8WOdSbbAoaD4NSW+tIZdQYBOPyQKoAAKkIsPv0se4A/1UC0AAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-ypan {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4anK0lywAAAMVJREFUWMPtlzEKwzAMRX/S7rlpIMXeOnaLaME36FLo8XqCdNFghGljyc4kgQi2Q/SUj0F/eL7eMMTKz6j9wNlYPGRrFcSoLH4XxQPvdQeYuPOlcLbw2dRTgqvoXEaolWM0aP4LYm0NkHYWzyFSSwlmzjw2sR6OvAXNwgEcwAEcwAEcwAEcoGYk20SiMCHlmVoCzACoojEqjHBmCeJOCOo1lgPA7Q8E8TvdjMmHuzsV3NFD4w+1t+Ai/gTx3qHuOFqdMQB8ASMwJX0IEHOeAAAAAElFTkSuQmCC\");\\n}\\n.bk-root .bk-tool-icon-range {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAABCJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDx0aWZmOkNvbXByZXNzaW9uPjU8L3RpZmY6Q29tcHJlc3Npb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjMyPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWURpbWVuc2lvbj4zMjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgICAgIDxkYzpzdWJqZWN0PgogICAgICAgICAgICA8cmRmOkJhZy8+CiAgICAgICAgIDwvZGM6c3ViamVjdD4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTgtMDQtMjhUMTQ6MDQ6NDk8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPlBpeGVsbWF0b3IgMy43PC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgrsrWBhAAAD60lEQVRYCcVWv2scRxSemZ097SHbSeWkcYwwclDhzr1Q5T6QE1LghP6BGNIYJGRWNlaZItiFK1mr+JAu4HQu0kjpU8sgF3ITAsaFg0hOvt2Zyfvmdsa7a610Unx44Zgf773vvfneezPHNzrbhn3CT3xC3wPXYOC8LDzqdi8YY/gwh4BeknS/2th6dr2kf94AOp3OFyWgMyziOPbMDxV9FTtJnl1ut795Xd0/YQ0/vtYQwMT1KXWCfr2IjOWwtNehwN4xL9ykTrm6Pzl58yLn3J+mKh9mXbT3uRjGEDph+O8/TjfP5dBp7Ha7AX7O3o5nZeD/0E/OGyXntDgzA0X6qmCnrVutVlrUWV9f/3xo+pwhGDhvEPHOjoxnZjJggXmMHzBQ7NGNp9vxk61fr0HR7e/u7pZzCGHlc7qwBYYTT7tJYSx1AQzppyFPft5apta9w7SKcn0b7P7+/jCsDQ5mbc0dCmIJGDN0ehdcjsmkm6A6KUeKFOTE11PLxrC7Ukqh3ylL2fT0NAP9q6ur6rRCJJYsbKB0JsbCKMuy+xREePDyxQPCz+Crlw062QcA5wBOOt1l6vIl2WiI9F1fN6Q+BBqit6hEC4Hk08GQJMn4myjSP7RavVxgdaVUh/3U6HCMsPr9pYnJKRziHtWQ+un58+hGs6nsjQSjpuTyKGN3CX+FBwHXSiEVgjP+O8X6N12kIePES+GzTKAkGbNp8yJsGUMVzz8jPKReiyAQRimy5/cjye5RpF8utFp/+nwmT7d/NMzcFkS7yjJNGDaPURQxIQThEQy0SyF4l5WJYYhBa816vZ6dU7A6CAhbZVow/pDe0O9hVOoCi13r4BgBAvJHqMSQL2vE/iH6IAXEwgrRVUmBoRRwnwJQT98xEeVeSUyB4dJ5nwJBKdCFFGRmUCcu7rwIYypCTblaChuNBhWODrman5ub+4v0rMNBt8z6Ezh7GksJQpCbm79cMQE7QBFm/X6f0rjWnv8WRYg/QdbUpwDAEBy8vPyA8rNGzg3a8MiElwiM7dAtRqNoNptjGPM1laVxP9umWEMGLOKhKUOJDtBwDmzsw9fC/CzHr9SGuCTi2LbbKvVtmqXpCjMihBFa79Wrt5fGx9PDzc3fmu32Lf8qFliwU9emKhBSp+kRKn/hu9k1COEDbFdt/BoKWOAkuEbdVYyoIXv8+I/QK9dMHEb1Knb7MHOv8LFFOsjzCVHWOD7Ltn+MXCRF4729vWMDK+p8rLkvwjLg4N4v741m5YuwCI9CvHp1Ha8gFdBoPnQAkGsYYGxxcfEI7QQlFCTGUXwjAz4tWF+EpymOWu7fglE7qsOvrYE6g4+9/x/vhRbMdLOCFgAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-polygon-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjc1OfiVKAAAAe1JREFUWMPt1r9rU1EUB/DPK0XbqphFHETo4OCiFhwF0V1KHbRSROLqon+AUMVRRFBwEbRFMBiV+mMW/wIxi5OD1kERRVKRJHUwLvfBTZrU5OWBGXLgQu7Jfe98z/ec7z0vKa88b2q1BDtRHdAPBaylm1NzsxsOjPnPNt6WSWprbft+/c3I3zOAjhT1Y4+fvcjEQJIXnVECSa+AhqIHqlHH5lWCZoe+Gk4GRgDG86j9SAUdlDBSQaZhlOkuHyoVdJmsw98D1S5fM4NYM1LCpqM+Lwa240oLgmZzpVZvzKT75VLZcqksSZKWlQeAy/iORVwIvh31xvotvK7VG3Px4aWHj3Jl4C2uYSvq+Bn8v6LLbaVWb9zsBiKLCvbiNG7gLm7jAYqbPHMJMziZ9lsKoh8GtqCEVVzHftwJn+TFHp4/hg8BSCYVfMOZoPEv2NZGdy9WCGUr9toDR3E2/H4V6nwRe/BmgN65H1ZhvMuB3XiKIyFoGefwO6ysVkUlrNUNsyAK/jli533Q+Y8cJFvAeXyMS1CI/jiMr/gUtD2LQwMGr4R3p7bY3oQHQ5b38CT4D2AXXg6YcQXHpyYnlqKsi5iOAVSwL9zd7zJ09r+Cpwq72omFMazjT9Dnibym0dTkRDUKrrgwH7MwXVyYB38BstaGDfLUTsgAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-redo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4itK+dVQAAAaFJREFUWMPt1L1rFFEUBfDfJDaBBSslIFjbaSFp1FJQFMVCHkzhKIqdUYOCoBgErVz8rCwiTDMwBCIKipDWyip/gxAIWAmBgBC0eYFh2Gx2l9lFcA5M8e59782Zc84dWrT435Hs1siLchqn43MS0zgW22vYxjesYjVLw3YjBPKinMUTBOwf8J5fKLGYpWFjJAJ5Uc7gIW6jM6Kim3iNZ1katgYmEL/6I+YasvY7Lg6iRpIX5VF8wuEe/XV8wGf8jN6LWTiAc7iEQ7ucPZ+lYW0vAtfwvlbfwCKW9gpXDOv1mJvZHiSO91MiyYsyiQSuxtpXXM7SsDmM5nlRdrCMMz3sOJWl4Xevc/vwBzdwAl+yNNwZxfRI+GxelK9ikHcwh8d4NNR/YFRES1ZwoTYdR7I0rNf3TzVNIGbmSvR/Bx08mIgCFSVu4l2ltIWD9WxNGR+W8KOynqnZ0rwCeVG+wa0hjrxtWoF5dAfc28V8Mib/n+Nev5dnabg/zgw87aNEN/bHOwVRiRe4Wym9zNKwMKkpgIWKEt24njxiJlq0aPFv4i9ZWXMSPPhE/QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-reset {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4gWqH8eQAABLdJREFUWMPtlktsVGUUx3/nfvfOlLQaY2IiRRMQIRpI0PjamJhoVASDvNpCpYw1vJQYSVwZwIVQF6wwRHmkAUof9ElrI6VqDAXcID4TF0IiYQMkSlTokNCZ+b7jove2t+NMH7rQBWd3v+989/zP+Z8X3Jb/WGQySvUNTQBJESkNguAVYIWqzhaRhwBU9WcR+QXoymazn6jqzUQiMQSQzWZRVdal1vwzAI2tHQBPOuc2AbWTdOyQ53n7nHNfRwee51GzqoIQMCLDpr3x/tLQ0oZzrk5Vj0/BOEBt+KYuOlBVGlrahr0Wob27t3gEjnZ2AyQzmUwHsDgP6J/AYRE553neDwDOuUdU9QngNeCumK4TkRMhZUORcYC1qysLA6iuSQHIwkWLD6lqapQsuSmwTVV3h99I7EcAR462A2xR2Ilq6ehTaejvO1774kuLNALR33eclsaGsQDe3fYegHl43vyNwEeqGl1963mm2jl7YZRTQ82qlWP4HM6ZToC5ztkW4LHQoALru7s6Di5dvlIj/e6ujrEAWoZDn8hmMjXATMACGaAVuBjXTVVXFc/AxhaA+4zvn1DV+eHxVWPMAmvtb5GeMWZyZVhI2rt7qVy2pOh9U1snwIPW2vMi4oWJuBPYHkVAVScPoKmtkzVVK6cEMsyJraHhiCqJqJUwj/JRz7TW1iSSyR2rVyylqa0Ta+24Ic8vXaAEmDFc/l5Z2A/80OibuVyuz/f9ElUdHCmvw82t5HK5h6y1PYhsz2YyGw43t2KtBZHIGwB6+j4rCkBVUdV7gXrggnPuu8h4eP+xMeZS2D0rJYZ6AdAMzAt1b4nI26p6IFZOY8pugijcKSIHVLUK0LyST4vnrVfnWr3mjmP4QTATaERkXkypRFX3isjmuHdRJEK6Ckqquopp06bdKCkp2Sgi7XnGLcg7gzeutwNIiPYc8HixqIrIOlU9ONVIhHPEd851icgSVXUiskVV94gIqoonIt0i8gfQCfwae38e6BWRXuBZz5jZ8VbaOE4EIqlZVUEQBLlkMplS1QER2RwkEnsSyaREDUzyeNsvIhvCMqkH1kdIJ2o+k8iJB1LVVRfjZ6nqqlEAIbdVQGto8Lrv+/dbawcjAL7vc+6bs+zetetfLSHxniIFGofGGsU2oC7eOCbDfZ7nQawBOSAX74SF9oEPImOq+r7nmVmxb5raukZa8UReGmNmhbMkAwwBH467EYVZe49z7kdgenj8k7V2oTHm8kgdWcvrNdVFjR8cHkYzjDH9wLjDaEwEzpwa4MypgWvAjtjxfGNMj4jMiT+M+kFsZI/Q6Pv+HGNMT8w4wI7TAyevxXVPD5z8+zD64tRXAMHVK1eaVLUyVvuDqroV2BOnJF4ZIedviUidqt4Re9s+vbx8zZXLl7PR2+nl5Tz/zNOFp2FzxzGAklw22wUsLLaSKXwf8vhosZUM6PeDYEUum70VHfpBwKsVyyfeikOP6oBNwN1TrLbfgX3A1kKLzKeff8nLLzw38T5wZDgxn1LnNk5lLRfP26/OnR2hwfNYW2Atn9RCsrf+EECyrKysDFimqhXhyjY3VLkAXBKRDqA7nU6nS0tLhyIj6XSaN9bVclv+l/IXAmkwvZc+jNUAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-save {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4UexUIzAAAAIRJREFUWMNjXLhs5X+GAQRMDAMMWJDYjGhyf7CoIQf8x2H+f0KGM9M7BBio5FNcITo408CoA0YdQM1cwEhtB/ylgqMkCJmFLwrOQguj/xTg50hmkeyARAYGhlNUCIXjDAwM0eREwTUGBgbz0Ww46oBRB4w6YNQBow4YdcCIahP+H5EhAAAH2R8hH3Rg0QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-tap-select {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3NzIwRUFGMDYyMjE2ODExOTdBNUNBNjVEQTY5OTRDRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOTJBQzE0RDQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOTJBQzE0QzQ0RDUxMUU0QTE0ODk2NTE1M0M0MkZENCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTQ0QzIwMUM1RjIxNjgxMUE3QkFFMzhGRjc2NTI3MjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzcyMEVBRjA2MjIxNjgxMTk3QTVDQTY1REE2OTk0Q0UiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6eYZ88AAADLklEQVR42rSXf2TUYRzHv7tuGcfE6Vwb5zLSSjEj7Y9KWqfEmFZJP+yPMdKKmUrrn0iUfjhWlLFi6YfNrF+StBoTo39iYkTGco4xxxG59P7k/T2PT8/37nu3bx9ezvPj+zyf5/PreS78bGLS8SmrwE6yje3NHJsDBTALpknBz6JhH3NiYAB0gHqPOVv52wJ6QQ48BzdAttTioRJjdeA8mAHHS2xuk3p+M8M16ipVQE49Ds6CiFO9RLjGONf05QLx6wPQaBlbBlPgJVgkP0ETiIJ2sB/E1XfimjfgBOOlKDUqCGOcqBcQnw6BYW5YTo4wbvQhMmCfGRemC2rBiGXzWUb+kM/NRZ6CHWBM9ce5R61NgX6ayhSJ5EPlItlDRNkz4JbFHf06BkSzHjXxM+gDv1S/mPUo2AXWgt9UUHL/IVhS8yUV1/EbV3o4N+NaoE9Fu/i827K5pNYHnqAVJECShWmAaddpscYFFXwR7vnXBRGlnUN/L6kqKJlxnRUuDbaDBiL+vst5d4gpcpBrqk/2jIgCKVUolhntplzivHmwh4stGOPfwBWwl/2dpp8p7xjQZqFLiQJtauKkivYm+kzccpK57yXfOUe+P23JqAnVbhMFmlXntCWnxbT31am9ZJ4BJifsUmNTqt0cYhA5ypympPg7VkEKunPbVb8cIG+0kyHLJZNR7fUMooUKFHAPkfQo58VLK+RzwRDd4FdWG9mjpaAXzqkJa1R7kQttqEABWXMjOOxxVRfnhRm5URX1prk/0pQHwNcKlchZ+jdpC+hFdVqO0my9Hj5dkYgCn1Rfh/KdlNDHrJhPqlDih+IfBd6qwpOgEqYMsorJ2HtWxtagLJDn/W3KRfPOZhoeBJfZPgVeGKeKrkQBh5dLXl25Ny3pc4/1fkTdbvFqFQgbxWeYD0hXulhQ0pYiM1jG547fcbMQpVnHTZEn9W3ljsCzwHxCdVteNHIZvQa7/7cC7nV6zHIfyFP9EXjFa7YxKAVqPP4bxhhoLWW+z9JyCb6M/MREg59/RlmmXbmneIybB+YC/ay+yrffqEddDzwGvKxxDmzhc0tc80XVgblqFfgjwAAPubcGjAOl1wAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-undo {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4em8Dh0gAAAatJREFUWMPt1rFrFFEQBvDfGhACASshkL/ALpWVrSAKEQV5sIULWlgZNSgIFkGIVQ412gkBt1lYLERREFJqJRaW1oHAoZUQsDqwecWy7N3tbe6C4H2wxc682Zn3zTfvLXPM8b8j6RqYF+UCzsfnHBawGt3fMcAX7GEvS8NgKgXkRbmMxwg41TLsN0psZmnodyogL8pFPMIdLHUk7hA7eJKl4U/rAuKu3+HslFr/FZezNPSTFslX8QErDe4DvMVH/Iq9F7VwGpdwZUjsPtaSFjv/1vCBPjaxO0xcNbHejLpZrrlvJCMCT+JzA+2fcC1Lw+GE4l3CG1yIptfjCtiKoqtiJ0vD3aM0Py/K57iIMxgkQxat4EdN7e9xdRzlk+LEEPvDWvIDXJ928sYxjL36icWK+VaWhlezOIqbGFirJd/H7szugrwoX+D2BDEvszSsT5OBdfRaru/F9dPXQF6U27g/KnmWhgctxqyzBrZGMNGL/rHI0nDkKXiKexXTsywNGx0OnFbFNk3BRoWJXnw//j+ivCi32/S8CxPVNiWOAdUiJtXITIqYY45/Cn8B2D97FYW2H+IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-wheel-pan {\\n background-image: url(\"data:image/png;base64,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\");\\n}\\n.bk-root .bk-tool-icon-wheel-zoom {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEgskILvMJQAABTtJREFUWMPdl1+MXVUVxn/fPvf2zrSFmUKnoBCUdjRoVaIxEpO2JhilMYBCtBQS2hejpg1Uo2NUrIFAoyGmtiE+GHwQGtvQJhqDmKYRBv+URFsFDNCSptH60DJTO3dKnX/33rM/H7rvsDu9M20fDMaVnGTvtb69z7fWXmvtc/TEzqd4OyXwNsv/FwFJQVI/sA14SZKRLOlPkr5TrVYXHz70quYkEEK4TtI2YAgYkrQthHDdhV5uuw+43/ZrwCbgRttgY/tjtrc0m83X3/f+D6ydnJhYcB4BSZcBA7aP2d4ELAGW2N5k+xgwkDB0IH19CGGH7R8B1aQeAf4KvAw0ku4K2zu7uru3ApdPEyiKohd4TNKjtjt5h6RHgccSNrddbvuHtm9Jqoak7xVF8WFgdavV+pSk5cCObNmXgK++85prCj3z28HKqZMnH7D9YAY4BvwujT8BvCuL1INX9vVt+dfwcCvNb7f9q2RuSfrGvWu/sL2Nf3LX7pzvj4ENSGBPVarVd4fRkZFltjdmoMGiKO4IIWwIIWwoiuIOYDDzeOPoyMiyFLkum7WJCMDztrcrTTrIRuAQZ6NcK1utL4dWq/VZoC8BhqvV6l1lWb4YYxyLMY6VZflitVq9CxhOmL60hhCKeYiV7WMKIXw9jT1HpXw3c+bOAKzOjJubzebJrKQCQLPZPClpc7bP6rMYKtjXth2OMf7tIkr11Wz8oQDc1Fb09vY+kQw1YAuwJY2nbUluAnCWpKkaFl6IQIzxivaR2SYA89sJVK/Xp2x32R6w/a30DNjuqtfrU0ArYecDCEqgLqm94T0dEm9mBG7PxkdDlkBnkhebgIezNQ8nHcCZPL9ijE1Jf/bZZoPtzbavmqNZLbf9tSxq+yoduuJ+SZ+zXSZyBXCqU+d8fvC5yRUrV+0G2j3g2hDCLyXd/+Su3QdnvP/zCuH72LWsgf2k0oHlH2c2odlkxcpVEdgr6aDtjyb8x20/J+mA7T9I6rL9SWA5dne2/GdXLl58qNJh398An85yTMA+4DOz8Dgu6Zu2dwJXJ91ltm8Gbp7Fgb+EEB4aHhpq5CEtACqVyr3AC0AlPS8k3TSmQ2YPhhBuS/1/LpmS9JTtNTHGfwBU2uUALARotVqniqJYH2Pck85pfavVaufAwnQvnHc0McaDKVptebN94QAnJB0EdtjekydyZXqjs/0ZgLIs/w6sy8bnYGYJ63pgERKC05JutT1kOwITwL9tvzlzUQUYB+Zjs2DBgu6xsbGJZHstByZbezregcBXeCsEz1bnzXt5anLyzLq71zDLxTRdVgemdx0fv2e2w5thO5DbiqL4oKT3ZKpnpyYnz+SY2ZpTAPZmJfdIrVZbNBNUq9UW2X4kU+2dcf53Aj1pj2PA7y/6m1DS00A9za9uNBq7iqJYBuoGdRdFsazRaOzKSqye1rTbaa/tlbYrqXQP2X4FIA9/J1l39xrC0v7+w5IeB8XkwS1lWe6TGJAYKMty31tfO4qSHl/a3384I3CDpI+kzC4lnRfrue6GytEjR8oQwlY73gC0L4qlth/q0M1/LYWtR48cKQF6enrC6dOnVwGLEpnxnp7en4+O1i/tszzGOCTpPmB7ahb57QUwBWyXdF+McWg6MScmuoA8OX8xOlpvXGz422XYTsB/SnpA0h7bX5R0WzI9HUL4qe2XbI+dk3xl+V7gxoztD5jRI+YK/zkEEokx2/uB/RdzIfUtueqVN04cXwF8G3iHY3z9Urw/j8ClyhsnjrcS2Vv/J/8NLxT+/zqBTkcxU/cfEkyEAu3kmjAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-box-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEg4QfHjM1QAAAGRJREFUWMNjXLhsJcNAAiaGAQYsDAwM/+lsJ+OgCwGsLqMB+D8o08CoA0YdMOqAUQewDFQdMBoFIyoN/B/U7YFRB7DQIc7xyo9GwbBMA4xDqhxgISH1klXbDYk0QOseEeOgDgEAIS0JQleje6IAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-freehand-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADTElEQVRYCeWWTWwMYRjH/88721X1lZJIGxJxcEE4OOiBgzjXWh8TJKR76kWacOBGxdEJIdk4VChZI/phidRBHMRRIr7DSUiaSCRFRM3u88gz+o7Z6bBTdjmYZPf9eJ55fv/5zzvvDPC/H9QsA66Olo9Ga+/MdR+Ljm2/KQIULsz9FqItGdOfJKLhApLgVkiSCGODjWit7QpKWy+TNrFeXvzKVUT8NiTVaIgDcbiCFJ7GiT8WkARXAdYBK0Lbhi/CenArRNskuM7/tgNp4ArQ42dwjf3WY5gWTqC7O/NbNn2Xkfw/YwdSw/We14HP2IEZwX+y9cZ9SH0LmgFP7UCz4KkENBNeV0Cz4b8U8DfgKiDxMWwUXETqLvJpCQpXZfawbzS7t9v5pL19cHBwfja7YA0y/lyCM0+E5hv5+piZXwKYcF23as+37bTXsQVqgkL0p/34fHR7DcBtbetFsBmGDwMOJCggYG55yw7dMlk6DuC1Bdu2RsCU9TYWQq2IoGbsreZ5NzvEqfSBsIsIy8OTbcdgiRHeh4o8AFAEwDakbY2AaCCpH7V9aGhoUUUy3UyVbkPYFuYLDlUZH8XBpwxkK0Dbgxg5HcVi0ent7a0RULMIozaHBSMfF9b2SzdutFcFB2FkwMIJOG6qfteXOa1nHZ48tyefuwyfT9s6wtzZ3t7eZse2DR2I228TtHXzuWCx9g8MtK5cuHCZTH4tiHEOa4xFngvTyS8f35d6enomiCi4/foEXBkZaQuukChL4FYA2Whd7YcC4gEdW3CpdL3LtGAVCVYJywEyTpAuJKeMOKXZs/Bw947C50KhUFOG4cwz35cjWNBlHGeD53n3xsfHP/T19U1qciggar8Fa4I3PHobIotBWBtc2hSiChyZxVzM53Pv7FVH6Tp3uVy+g0r1ImD2GjIrQGYIxjnfuXTZGICS5k/bBwJoubwEFX4TLah9EXomJGMA3za+f9913Yl4TnzsDQ+vE6YTZOjHh4ngibstt1pzQwd04F0bPStEBpXqRoBeQ/AKghfBnOEKgS+Q7z91Xfdz/HGKg8Ox7z8iYD9z6wqTkZFgnvhMGP9VZ2or1XVkPM9z0mytSfVsHa1RLBZbLoyNzUnK+ydz3wC6I9x+lwbngwAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEjglo9eZgwAAAc5JREFUWMPt1zFrU1EUB/DfS4OmVTGDIChCP4BgnQXRxVHqIJUupp9AB8VBQcRBQUXIB9DWQoMRiXZzcnQSA34A7aAuHSJKkgo2LvfBrU3aJnlYkBy4vHcP557zP/9z3r33JdXa647N0kHSZd5Nn0rSxc8G3cXp85sMcnZZ8vge3osZ+l3vB8CWFA0iL14t79h210swAjACMAIwAjACkB90D/8/GchI9ve4nPwTBh5E9ws7OepzGWb9EddSn51Op9ZstadSg4VK1UKlKkmSDSMLALewiuNh/hVJq71Wxttmqz0dG88vPc+MgWP4grvYG3SLOBrZFFFrttqPe4HIDxh4GSei+98iSlusuYopXEAjBtEPA3tQwUpwluAbDm4TPJUz+BTW9l2Ce6G7L0X/Bw8D3T/7SKKIDzHg7QCcxjvcQAEtXAnrrg/RP0/DKPbqgcN4iVOR7gcO4dcQgRuoh7HSqwlP4n20m63jJu5n8MkWMYfP3UowhzdR8FU8w9iQwevBdyq3/27CMRzAE5yLuvsRLg+ZcR1nJ8YL81HWJUzGAPaFZwe/Q5MdyYDyNHgjzO90YyGHtVDncuiJchaHw8R4oREFV5qdiVmYLM3OgD9k5209/atmIAAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-point-draw {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gEMEiERGWPELgAAA4RJREFUWMO1lr1uG1cQhb9ztdRSP7AF1QxgwKlcuZSqRC9gWUUUINWqTh5AnaFOnVPEteQmRuhCURqWsSqqc9IolREXdEvQBElxtdw7KURSFEVKu4w8wAKLxdw9Z+bMnRmZGXfZ29//II8th4WwGVNyIoQLYB5vxA9Caq04iUd9A+7ZlsNC2I7TdSd2hZXMJKlnTqp9jtl/GBaqoyQ0noFKpUIzBicYYc+DEFpxkglc4oVJa5gvDn8v1xV2irG3FM4NSVwjUKlUaMcpJhCGmSEJQ6QGD8M5WnHCd8+f3QCXpPLx8WNwv0j6Bm9FMK7FJ3WBE+R/2t7c/GBmFvSBrzRTCsyTDjXrxUgEMtpxynJYmJoBJ4VAybwVARgvL7Oik0okCodnKpVKX7P0leiVMb0VvbJT+upznK4vh0GIeQwwQStJkHQD3MwsCALTJRG7Qrdrj5m/djgYaIa0hlkRdJk26XEgC9txurccBtVW3IudBImmZuACUP+ZlIDBt9FKcubYNTcAH/X0RYM1E7utJPlqe+uZzPxUcEkiSS4sTT95n15Mud0xWC0o2PAWOCdK3KYZlFxfM+tHOcnMzNr1es18ug+cgsVjP4yBU/Ppfrter1m/+l0+zYygML1xRVHU7TSb1cSzBzoBzszsH+AMdJJ49jrNZjWKou6wBnwOzcyndBpNbuueURR1Dw8Pq35p9cc5p/Dy9Dypt7jXrtdGwQECS9NPhr6Gq6txUzNigE6zydLK6lTw12/KT4FGFEUfJX2YJNONq5tVs4ODA7sD/DnwJ/BoADZuE3tHFs12dna6d4C/BI6AlbyzI8ii2TTw12/KK33gb2cdXsNZoAntbZC2SeO4c9592k/5eNQbiwvFd1kJuFGwLJr1wSPg/SwpvyFBHufOeXcFeAlE97U/uCxOY+P3b+Bn4B3Q+L8EdJfD4a+/AbC4UBzPxiPg3wlHZquB28Cn2IuR9x3gr3uV4DbwfvSDOvi4uFA8BDZmIRHkjHpS9Ht9iRqd8+5G3g05mAGcQbsdiX5QJ428G7Kygo8XYdb1/K4NWVmjzkNge2sz84bs+ELmpDDLtqWsNZBXgvmw8CTtpWVMT7x5YWBjLARnwZfKQNYN2U2LPvrh+5nBt7c2M2/It9bArCTKR8eZN+SJ13AScPnoODeRdqNenH+wul5w2gUr2WUjMFAt8bZ/0axX/wNnv4H8vTFb1QAAAABJRU5ErkJggg==\");\\n}\\n.bk-root .bk-tool-icon-poly-edit {\\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gELFi46qJmxxAAABV9JREFUWMOdl19vFFUYxn9n9u9sCyylUIzWUoMQBAWCMdEEIt6xIRQSLIEKtvHe6AcA4yeQb7CAUNJy0daLeomJN8SEULAC2kBBapBKoLvbmdl/c14vdmY7u91tF95kknPOnHmf95znPc97Ro2OTeBbdjFDT3c32ZxVHUOE9kSMB0/m6ExuoJn1H+ur6Y+OTfD50SMN5168OgrAlyf7CfuD+z7+iDs3p8hkLUQ0iFQ/yFl5Nm/qonfHVva+s32Zw9GxCYILsZ08tpNfBhbs+1YN4OH9+7huGdECSBVfqUosbsllfmauBqiR+cCNwOr7AEo8pPHJnymXykhg5fUWjoQpl0vVvhZhbSzGoUOHqgBlt6B6uruj2Zy1E9jo0fhfeyL2x4Mnc8VErK0KUEOB64JSyptfG4RSytsJjUJVxw2lsFy3urL9nx1Qd25ObctkrVMi+jQivd7U2ZyV/3Hzpq7h3h1b/7p9Y0o8v8rwAbTWrGpSocN/FGDlbAI0Rl23PCBan0Ok158H9Ipwzi25A/Mzc9Gl/BYx/E4kYqC1NKRARNAaDCNUM27Z+Zr+ouXs0q4+LSLBHPYCFkTkC6uU39kwCdsS7WRKmaYUiAhdnZ3MPX2K4+QjQI+C94A93rMzm8ltMwyDeDzWjMZeEb2pYQDdW3vITU2jtUZ5QThOPgm8C7wP7J15OPsBsB3oWpGnVWisCeDS1VHj4vBI92+/3tgB7Ab2AruAXiDBK5oIOkhtkEYRNRuJhObrd8Dl9ewf4D5wG7hVLpen29vb5wzD+BrkbBMaL3d1dk5nsrnlFDTTFWAWmAZueWD3gCemGde2k2fw1Al1YXhEvjozoO49eczdqekrWmsc2zlrmvEKOGoW1GUjFLqSk2KpJrCLwyMCPAP+BO54QL8DM6YZX/ClsP9YnwKkXnIBP4jdIpJRpdJTCYdMwwi98KU0Hjc/dDILNyUcwTCWdOSMJ0TRmBktGRhLugu0xyLk7CIqVNm+0bGJptl1YXikD0grpY4Rjc4a8Fbgdab/6OGbAJeCUuyJnnHmZH9pbSyGuBXV8NUwlUpR1EWyixmSyTWEwqGlJ2Swbo2JXbAAfgDGgGQA9I1A9t1tlq0AxrXxn0ilUpw4fhQqYkH/sT41OTnJJwf2s6FjI5mshdYa7bqVR2uezr9MJmJt14FvGrh/O9D+e6UkM/xyCuCqEKCYnJyUTKFQrZDHjxzGshwWLQcRsOz8Hi85P23id0ug/XilAMLBmm4tPGdoaKjSH5+oAGrhwvBI9SjZTn4QSK9yenoD7dlrExPoJlXW8G8ytpNHxRKk02lGxsdRKFwXLNvx5yY94HQLGhGk4LFCYQSqaE0AwWM1eOoEbR0dKBSW7bC4mKuffxs4D/wCLKwQQPAUzIkslfp6cVomROWSolh0GjldAM4nzDi2k9/i5UAzC9aKfwNJ3zgJg9YEvN6+C7SHgKm69+sD7RfNnKTTaZRPQfAut4oFV//IS7gkcB34VlVo8kGzphlfB+DU+TfNGBpZtRastvrvARJmfMF28ge9sc2B9/PNnCilMIDwK6y8/ow/Ai4kvILTljAXvDvEvrqKSUs60KolzPjBxspavQD2tKqCAGF/Ba+xE/Wbilu54wZV8NEKF5fXzQHl/bh4hUsE0WAXSlDMYcQSrQXgCmsTseXHsJkNnjqBFGwKJaHsKlxtUHYVhbLCzr1kaOA4bcn1y1Swmb+iLpJKpVrfgdpfsiVVCYcgluwgnU7jEgJ4s5UkLFtWYyHyEg0/N1q1tmQH+YXnAMFr97Nmv3p+0QsHQRsF8qpBOE5+rb9Nkaj50tVQKjqh4OU3GNL/1/So3vuUgbAAAAAASUVORK5CYII=\");\\n}\\n.bk-root .bk-tool-icon-line-edit {\\n background-image: url(\"data:image/png;base64,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\");\\n}\\n'},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(72),o=t(303),l=n.__importStar(t(282));class h{constructor(t,e={}){this.items=t,this.options=e,this.el=s.div(),this._open=!1,this._item_click=t=>{var e;null===(e=this.items[t])||void 0===e||e.handler(),this.hide()},this._on_mousedown=t=>{var e,i;const{target:n}=t;n instanceof Node&&this.el.contains(n)||(null===(i=(e=this.options).prevent_hide)||void 0===i?void 0:i.call(e,t))||this.hide()},this._on_keydown=t=>{t.keyCode==s.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},s.undisplay(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){s.remove(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=e.getBoundingClientRect();this.el.style.left=null!=t.left?t.left-i.left+\"px\":\"\",this.el.style.top=null!=t.top?t.top-i.top+\"px\":\"\",this.el.style.right=null!=t.right?i.right-t.right+\"px\":\"\",this.el.style.bottom=null!=t.bottom?i.bottom-t.bottom+\"px\":\"\"}}render(){var t,e;s.empty(this.el,!0);const i=null!==(t=this.options.orientation)&&void 0!==t?t:\"vertical\";s.classes(this.el).add(\"bk-context-menu\",\"bk-\"+i);for(const[t,i]of o.enumerate(this.items)){let n;if(null==t)n=s.div({class:l.bk_divider});else{if(null!=t.if&&!t.if())continue;{const i=null!=t.icon?s.div({class:[\"bk-menu-icon\",t.icon]}):null;n=s.div({class:(null===(e=t.active)||void 0===e?void 0:e.call(t))?\"bk-active\":null,title:t.tooltip},i,t.label)}}n.addEventListener(\"click\",()=>this._item_click(i)),this.el.appendChild(n)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),s.display(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),s.undisplay(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=h,h.__name__=\"ContextMenu\"},\n", - " function _(e,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=e(9);function*r(e,n){const o=e.length;if(n>o)return;const r=t.range(n);for(yield r.map(n=>e[n]);;){let f;for(const e of t.reversed(t.range(n)))if(r[e]!=e+o-n){f=e;break}if(null==f)return;r[f]+=1;for(const e of t.range(f+1,n))r[e]=r[e-1]+1;yield r.map(n=>e[n])}}o.enumerate=function*(e){let n=0;for(const o of e)yield[o,n++]},o.combinations=r,o.subsets=function*(e){for(const n of t.range(e.length+1))yield*r(e,n)}},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(296),i=e(173),s=e(72);class c extends o.ButtonToolButtonView{render(){super.render(),s.classes(this.el).toggle(i.bk_active,this.model.active)}_clicked(){const{active:e}=this.model;this.model.active=!e}}n.OnOffButtonView=c,c.__name__=\"OnOffButtonView\"},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1),s=t(19),l=t(72),n=t(115),a=i.__importStar(t(18)),r=t(78),_=t(9),c=t(13),h=t(8),u=t(81),v=t(306),d=t(307),b=t(308),p=t(295),g=t(299),f=t(310),m=t(173),w=i.__importDefault(t(300)),y=i.__importDefault(t(311));class T extends u.Model{constructor(t){super(t)}static init_ToolbarViewModel(){this.define({_visible:[a.Any,null],autohide:[a.Boolean,!1]})}get visible(){return!this.autohide||null!=this._visible&&this._visible}}e.ToolbarViewModel=T,T.__name__=\"ToolbarViewModel\",T.init_ToolbarViewModel();class k extends r.DOMView{initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new T({autohide:this.model.autohide})}async lazy_initialize(){await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,async()=>{await this._build_tool_button_views(),this.render()}),this.connect(this.model.properties.autohide.change,()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()}),this.connect(this._toolbar_view_model.properties._visible.change,()=>this._on_visible_change())}styles(){return[...super.styles(),w.default,y.default]}remove(){n.remove_views(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await n.build_views(this._tool_button_views,t,{parent:this},t=>t.button_view)}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const t=this._toolbar_view_model.visible,o=g.bk_toolbar_hidden;this.el.classList.contains(o)&&t?this.el.classList.remove(o):t||this.el.classList.add(o)}render(){if(l.empty(this.el),this.el.classList.add(g.bk_toolbar),this.el.classList.add(m.bk_side(this.model.toolbar_location)),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change(),null!=this.model.logo){const t=\"grey\"===this.model.logo?f.bk_grey:null,o=l.a({href:\"https://bokeh.org/\",target:\"_blank\",class:[f.bk_logo,f.bk_logo_small,t]});this.el.appendChild(o)}for(const[,t]of this._tool_button_views)t.render();const t=[],o=t=>this._tool_button_views.get(t).el,{gestures:e}=this.model;for(const i of c.values(e))t.push(i.tools.map(o));t.push(this.model.actions.map(o)),t.push(this.model.inspectors.filter(t=>t.toggleable).map(o));for(const o of t)if(0!==o.length){const t=l.div({class:g.bk_button_bar},o);this.el.appendChild(t)}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}}function M(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=k,k.__name__=\"ToolbarBaseView\";class B extends u.Model{constructor(t){super(t)}static init_ToolbarBase(){this.prototype.default_view=k,this.define({tools:[a.Array,[]],logo:[a.Logo,\"normal\"],autohide:[a.Boolean,!1]}),this.internal({gestures:[a.Any,M],actions:[a.Array,[]],inspectors:[a.Array,[]],help:[a.Array,[]],toolbar_location:[a.Location,\"right\"]})}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map(t=>t.id));return _.some(t,t=>!e.has(t.id))},o=this.tools.filter(t=>t instanceof p.InspectTool);t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter(t=>t instanceof b.HelpTool);t(this.help,e)&&(this.help=e);const i=this.tools.filter(t=>t instanceof d.ActionTool);t(this.actions,i)&&(this.actions=i);const l=(t,o)=>{t in this.gestures||s.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},n={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof v.GestureTool&&t.event_type)if(h.isString(t.event_type))n[t.event_type].tools.push(t),l(t.event_type,t);else{n.multi.tools.push(t);for(const o of t.event_type)l(o,t)}for(const o of Object.keys(n)){const e=this.gestures[o];t(e.tools,n[o].tools)&&(e.tools=n[o].tools),e.active&&_.every(e.tools,t=>t.id!=e.active.id)&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=h.isString(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(s.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,s.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=B,B.__name__=\"ToolbarBase\",B.init_ToolbarBase()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(296),n=e(304);class u extends s.ButtonToolView{}t.GestureToolView=u,u.__name__=\"GestureToolView\";class _ extends s.ButtonTool{constructor(e){super(e),this.button_view=n.OnOffButtonView}}t.GestureTool=_,_.__name__=\"GestureTool\"},\n", - " function _(o,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const e=o(296),i=o(15);class s extends e.ButtonToolButtonView{_clicked(){this.model.do.emit(void 0)}}n.ActionToolButtonView=s,s.__name__=\"ActionToolButtonView\";class c extends e.ButtonToolView{connect_signals(){super.connect_signals(),this.connect(this.model.do,o=>this.doit(o))}}n.ActionToolView=c,c.__name__=\"ActionToolView\";class l extends e.ButtonTool{constructor(o){super(o),this.button_view=s,this.do=new i.Signal(this,\"do\")}}n.ActionTool=l,l.__name__=\"ActionTool\"},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(1),l=o(307),s=i.__importStar(o(18)),n=o(309);class _ extends l.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=_,_.__name__=\"HelpToolView\";class r extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=n.bk_tool_icon_help}static init_HelpTool(){this.prototype.default_view=_,this.define({help_tooltip:[s.String,\"Click the question mark to learn more about Bokeh plot tools.\"],redirect:[s.String,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}),this.register_alias(\"help\",()=>new r)}get tooltip(){return this.help_tooltip}}t.HelpTool=r,r.__name__=\"HelpTool\",r.init_HelpTool()},\n", - " function _(o,_,l){Object.defineProperty(l,\"__esModule\",{value:!0}),l.bk_tool_icon_box_select=\"bk-tool-icon-box-select\",l.bk_tool_icon_box_zoom=\"bk-tool-icon-box-zoom\",l.bk_tool_icon_zoom_in=\"bk-tool-icon-zoom-in\",l.bk_tool_icon_zoom_out=\"bk-tool-icon-zoom-out\",l.bk_tool_icon_help=\"bk-tool-icon-help\",l.bk_tool_icon_hover=\"bk-tool-icon-hover\",l.bk_tool_icon_crosshair=\"bk-tool-icon-crosshair\",l.bk_tool_icon_lasso_select=\"bk-tool-icon-lasso-select\",l.bk_tool_icon_pan=\"bk-tool-icon-pan\",l.bk_tool_icon_xpan=\"bk-tool-icon-xpan\",l.bk_tool_icon_ypan=\"bk-tool-icon-ypan\",l.bk_tool_icon_range=\"bk-tool-icon-range\",l.bk_tool_icon_polygon_select=\"bk-tool-icon-polygon-select\",l.bk_tool_icon_redo=\"bk-tool-icon-redo\",l.bk_tool_icon_reset=\"bk-tool-icon-reset\",l.bk_tool_icon_save=\"bk-tool-icon-save\",l.bk_tool_icon_tap_select=\"bk-tool-icon-tap-select\",l.bk_tool_icon_undo=\"bk-tool-icon-undo\",l.bk_tool_icon_wheel_pan=\"bk-tool-icon-wheel-pan\",l.bk_tool_icon_wheel_zoom=\"bk-tool-icon-wheel-zoom\",l.bk_tool_icon_box_edit=\"bk-tool-icon-box-edit\",l.bk_tool_icon_freehand_draw=\"bk-tool-icon-freehand-draw\",l.bk_tool_icon_poly_draw=\"bk-tool-icon-poly-draw\",l.bk_tool_icon_point_draw=\"bk-tool-icon-point-draw\",l.bk_tool_icon_poly_edit=\"bk-tool-icon-poly-edit\",l.bk_tool_icon_line_edit=\"bk-tool-icon-line-edit\"},\n", - " function _(o,l,b){Object.defineProperty(b,\"__esModule\",{value:!0}),b.bk_logo=\"bk-logo\",b.bk_logo_notebook=\"bk-logo-notebook\",b.bk_logo_small=\"bk-logo-small\",b.bk_grey=\"bk-grey\"},\n", - " function _(l,n,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n.bk-root .bk-logo {\\n margin: 5px;\\n position: relative;\\n display: block;\\n background-repeat: no-repeat;\\n}\\n.bk-root .bk-logo.bk-grey {\\n filter: url(\\\"data:image/svg+xml;utf8,#grayscale\\\");\\n /* Firefox 10+, Firefox on Android */\\n filter: gray;\\n /* IE6-9 */\\n -webkit-filter: grayscale(100%);\\n /* Chrome 19+, Safari 6+, Safari 6+ iOS */\\n}\\n.bk-root .bk-logo-small {\\n width: 20px;\\n height: 20px;\\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);\\n}\\n.bk-root .bk-logo-notebook {\\n display: inline-block;\\n vertical-align: middle;\\n margin-right: 5px;\\n}\\n\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});var s=this&&this.__rest||function(t,e){var i={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(i[s]=t[s]);if(null!=t&&\"function\"==typeof Object.getOwnPropertySymbols){var n=0;for(s=Object.getOwnPropertySymbols(t);nt)}}request_layout(){this._needs_layout=!0,this.request_paint()}reset(){\"standard\"==this.model.reset_policy&&(this.clear_state(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){this.ui_event_bus.destroy(),p.remove_views(this.renderer_views),p.remove_views(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.state_changed=new u.Signal0(this,\"state_changed\"),this.lod_started=!1,this.visuals=new b.Visuals(this.model),this._initial_state_info={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.state={history:[],index:-1};const{hidpi:t,output_backend:e}=this.model;this.canvas=new a.Canvas({hidpi:t,output_backend:e}),this.frame=new n.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges),this.throttled_paint=m.throttle(()=>this.repaint(),1e3/60);const{title_location:i,title:s}=this.model;null!=i&&null!=s&&(this._title=s instanceof h.Title?s:new h.Title({text:s}));const{toolbar_location:o,toolbar:l}=this.model;null!=o&&null!=l&&(this._toolbar=new d.ToolbarPanel({toolbar:l}),l.toolbar_location=o),this.renderer_views=new Map,this.tool_views=new Map}async lazy_initialize(){this.canvas_view=await p.build_view(this.canvas,{parent:this}),this.ui_event_bus=new f.UIEvents(this,this.model.toolbar,this.canvas_view.events_el),await this.build_renderer_views(),await this.build_tool_views(),this.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){this.layout=new x.BorderLayout,this.layout.set_sizing(this.box_sizing());const{frame_width:t,frame_height:e}=this.model;this.layout.center_panel=this.frame,this.layout.center_panel.set_sizing(Object.assign(Object.assign({},null!=t?{width_policy:\"fixed\",width:t}:{width_policy:\"fit\"}),null!=e?{height_policy:\"fixed\",height:e}:{height_policy:\"fit\"}));const i=w.copy(this.model.above),s=w.copy(this.model.below),n=w.copy(this.model.left),a=w.copy(this.model.right),o=t=>{switch(t){case\"above\":return i;case\"below\":return s;case\"left\":return n;case\"right\":return a}},{title_location:l,title:r}=this.model;null!=l&&null!=r&&o(l).push(this._title);const{toolbar_location:_,toolbar:c}=this.model;if(null!=_&&null!=c){const t=o(_);let e=!0;if(this.model.toolbar_sticky)for(let i=0;i{const i=this.renderer_views.get(e);return i.layout=new z.SidePanel(t,i)},p=(t,e)=>{const i=\"above\"==t||\"below\"==t,s=[];for(const n of e)if(v.isArray(n)){const e=n.map(e=>{const s=u(t,e);if(e instanceof d.ToolbarPanel){const t=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[t]:\"min\"}))}return s});let a;i?(a=new M.Row(e),a.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(a=new M.Column(e),a.set_sizing({width_policy:\"min\",height_policy:\"max\"})),a.absolute=!0,s.push(a)}else s.push(u(t,n));return s},f=null!=this.model.min_border?this.model.min_border:0;this.layout.min_border={left:null!=this.model.min_border_left?this.model.min_border_left:f,top:null!=this.model.min_border_top?this.model.min_border_top:f,right:null!=this.model.min_border_right?this.model.min_border_right:f,bottom:null!=this.model.min_border_bottom?this.model.min_border_bottom:f};const b=new y.VStack,g=new y.VStack,m=new y.HStack,O=new y.HStack;b.children=w.reversed(p(\"above\",i)),g.children=p(\"below\",s),m.children=w.reversed(p(\"left\",n)),O.children=p(\"right\",a),b.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),g.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),m.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.top_panel=b,this.layout.bottom_panel=g,this.layout.left_panel=m,this.layout.right_panel=O}get axis_views(){const t=[];for(const[,e]of this.renderer_views)e instanceof _.AxisView&&t.push(e);return t}set_cursor(t=\"default\"){this.canvas_view.el.style.cursor=t}set_toolbar_visibility(t){for(const e of this.visibility_callbacks)e(t)}update_dataranges(){const t=new Map,e=new Map;let i=!1;for(const[,t]of this.frame.x_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[,t]of this.frame.y_ranges)t instanceof o.DataRange1d&&\"log\"==t.scale_hint&&(i=!0);for(const[s,n]of this.renderer_views)if(n instanceof l.GlyphRendererView){const a=n.glyph.bounds();if(null!=a&&t.set(s,a),i){const t=n.glyph.log_bounds();null!=t&&e.set(s,t)}}let s=!1,n=!1;const{width:a,height:r}=this.frame.bbox;let h;!1!==this.model.match_aspect&&0!=a&&0!=r&&(h=1/this.model.aspect_scale*(a/r));for(const[,i]of this.frame.x_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,0,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}for(const[,i]of this.frame.y_ranges){if(i instanceof o.DataRange1d){const n=\"log\"==i.scale_hint?e:t;i.update(n,1,this.model,h),i.follow&&(s=!0)}null!=i.bounds&&(n=!0)}if(s&&n){g.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,t]of this.frame.x_ranges)t.bounds=null;for(const[,t]of this.frame.y_ranges)t.bounds=null}this.range_update_timestamp=Date.now()}push_state(t,e){const{history:i,index:s}=this.state,n=null!=i[s]?i[s].info:{},a=Object.assign(Object.assign(Object.assign({},this._initial_state_info),n),e);this.state.history=this.state.history.slice(0,this.state.index+1),this.state.history.push({type:t,info:a}),this.state.index=this.state.history.length-1,this.state_changed.emit()}clear_state(){this.state={history:[],index:-1},this.state_changed.emit()}can_undo(){return this.state.index>=0}can_redo(){return this.state.index=a.end&&(n=!0,a.end=t,(e||i)&&(a.start=t+l)),null!=o&&o<=a.start&&(n=!0,a.start=o,(e||i)&&(a.end=o-l))):(null!=t&&t>=a.start&&(n=!0,a.start=t,(e||i)&&(a.end=t+l)),null!=o&&o<=a.end&&(n=!0,a.end=o,(e||i)&&(a.start=o-l)))}}if(!(i&&n&&s))for(const[e,i]of t)e.have_updated_interactively=!0,e.start==i.start&&e.end==i.end||e.setv(i)}_get_weight_to_constrain_interval(t,e){const{min_interval:i}=t;let{max_interval:s}=t;if(null!=t.bounds&&\"auto\"!=t.bounds){const[e,i]=t.bounds;if(null!=e&&null!=i){const t=Math.abs(i-e);s=null!=s?Math.min(s,t):t}}let n=1;if(null!=i||null!=s){const a=Math.abs(t.end-t.start),o=Math.abs(e.end-e.start);i>0&&o0&&o>s&&(n=(s-a)/(o-a)),n=Math.max(0,Math.min(1,n))}return n}update_range(t,e=!1,i=!1,s=!0){this.pause();const{x_ranges:n,y_ranges:a}=this.frame;if(null==t){for(const[,t]of n)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const o=[];for(const[e,i]of n)o.push([i,t.xrs.get(e)]);for(const[e,i]of a)o.push([i,t.yrs.get(e)]);i&&this._update_ranges_together(o),this._update_ranges_individually(o,e,i,s)}this.unpause()}reset_range(){this.update_range(null)}_invalidate_layout(){(()=>{for(const t of this.model.side_panels){if(this.renderer_views.get(t).layout.has_size_changed())return!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map(t=>this.renderer_views.get(t))}async build_renderer_views(){this.computed_renderers=[];const{above:t,below:e,left:i,right:s,center:n,renderers:a}=this.model;this.computed_renderers.push(...t,...e,...i,...s,...n,...a),null!=this._title&&this.computed_renderers.push(this._title),null!=this._toolbar&&this.computed_renderers.push(this._toolbar);for(const t of this.model.toolbar.tools)null!=t.overlay&&this.computed_renderers.push(t.overlay),this.computed_renderers.push(...t.synthetic_renderers);await p.build_views(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const t=this.model.toolbar.tools;(await p.build_views(this.tool_views,t,{parent:this})).map(t=>this.ui_event_bus.register_tool(t))}connect_signals(){super.connect_signals();const{x_ranges:t,y_ranges:e}=this.frame;for(const[,e]of t)this.connect(e.change,()=>{this._needs_layout=!0,this.request_paint()});for(const[,t]of e)this.connect(t.change,()=>{this._needs_layout=!0,this.request_paint()});const{plot_width:i,plot_height:s}=this.model.properties;this.on_change([i,s],()=>this.invalidate_layout());const{above:n,below:a,left:o,right:l,center:r,renderers:h}=this.model.properties;this.on_change([n,a,o,l,r,h],async()=>await this.build_renderer_views()),this.connect(this.model.toolbar.properties.tools.change,async()=>{await this.build_renderer_views(),await this.build_tool_views()}),this.connect(this.model.change,()=>this.request_paint()),this.connect(this.model.reset,()=>this.reset())}set_initial_range(){let t=!0;const{x_ranges:e,y_ranges:i}=this.frame,s=new Map,n=new Map;for(const[i,n]of e){const{start:e,end:a}=n;if(null==e||null==a||isNaN(e+a)){t=!1;break}s.set(i,{start:e,end:a})}if(t)for(const[e,s]of i){const{start:i,end:a}=s;if(null==i||null==a||isNaN(i+a)){t=!1;break}n.set(e,{start:i,end:a})}t?(this._initial_state_info.range={xrs:s,yrs:n},g.logger.debug(\"initial ranges set\")):g.logger.warn(\"could not set initial ranges\")}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,t]of this.renderer_views)if(!t.has_finished())return!1;return!0}after_layout(){if(super.after_layout(),this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:t,height:e}=this.layout.bbox;this.canvas_view.resize(t,e),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}this._inner_bbox.equals(this.frame.inner_bbox)||(this._inner_bbox=this.layout.inner_bbox,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){if(this.is_paused||!this.model.visible)return;g.logger.trace(\"PlotView.paint() for \"+this.model.id);const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint()},this.model.lod_timeout):t.interactive_stop()}for(const[,t]of this.renderer_views)if(null==this.range_update_timestamp||t instanceof l.GlyphRendererView&&t.set_data_timestamp>this.range_update_timestamp){this.update_dataranges();break}let e=!1,i=!1;if(this._invalidate_all)e=!0,i=!0;else for(const t of this._invalidated_painters){const{level:s}=t.model;if(\"overlay\"!=s?e=!0:i=!0,e&&i)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const s=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:a}=this.canvas_view;e&&(n.prepare(),this.canvas_view.prepare_webgl(s),this.canvas_view.clear_webgl(),this._map_hook(n.ctx,s),this._paint_empty(n.ctx,s),this._paint_outline(n.ctx,s),this._paint_levels(n.ctx,\"image\",s,!0),this._paint_levels(n.ctx,\"underlay\",s,!0),this._paint_levels(n.ctx,\"glyph\",s,!0),this._paint_levels(n.ctx,\"guide\",s,!1),this._paint_levels(n.ctx,\"annotation\",s,!1),n.finish()),i&&(a.prepare(),this._paint_levels(a.ctx,\"overlay\",s,!1),a.finish()),null==this._initial_state_info.range&&this.set_initial_range(),this._needs_paint=!1}_paint_levels(t,e,i,s){for(const n of this.computed_renderers){if(n.level!=e)continue;const a=this.renderer_views.get(n);t.save(),(s||a.needs_clip)&&(t.beginPath(),t.rect(...i),t.clip()),a.render(),t.restore(),a.has_webgl&&a.needs_webgl_blit&&(this.canvas_view.blit_webgl(t),this.canvas_view.clear_webgl())}}_map_hook(t,e){}_paint_empty(t,e){const[i,s,n,a]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,h]=e;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(t),t.fillRect(i,s,n,a),t.clearRect(o,l,r,h)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(o,l,r,h))}_paint_outline(t,e){if(this.visuals.outline_line.doit){t.save(),this.visuals.outline_line.set_value(t);let[i,s,n,a]=e;i+n==this.layout.bbox.width&&(n-=1),s+a==this.layout.bbox.height&&(a-=1),t.strokeRect(i,s,n,a),t.restore()}}to_blob(){return this.canvas_view.to_blob()}export(t,e=!0){const i=\"png\"==t?\"canvas\":\"svg\",s=new a.CanvasLayer(i,e),{width:n,height:o}=this.layout.bbox;s.resize(n,o);const{canvas:l}=this.canvas_view.compose();return s.ctx.drawImage(l,0,0),s}serializable_state(){const t=super.serializable_state(),{children:e}=t,i=s(t,[\"children\"]),n=this.get_renderer_views().map(t=>t.serializable_state()).filter(t=>\"bbox\"in t);return Object.assign(Object.assign({},i),{children:[...e,...n]})}}i.PlotView=k,k.__name__=\"PlotView\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});var n=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function _(e){return function(t){t.prototype.event_name=e}}class a{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=a,a.__name__=\"BokehEvent\";class o extends a{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=o,o.__name__=\"ModelEvent\";let r=class extends a{_to_json(){return{}}};s.DocumentReady=r,r.__name__=\"DocumentReady\",s.DocumentReady=r=n([_(\"document_ready\")],r);let c=class extends o{};s.ButtonClick=c,c.__name__=\"ButtonClick\",s.ButtonClick=c=n([_(\"button_click\")],c);let l=class extends o{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=l,l.__name__=\"MenuItemClick\",s.MenuItemClick=l=n([_(\"menu_item_click\")],l);class i extends o{}s.UIEvent=i,i.__name__=\"UIEvent\";let u=class extends i{};s.LODStart=u,u.__name__=\"LODStart\",s.LODStart=u=n([_(\"lodstart\")],u);let d=class extends i{};s.LODEnd=d,d.__name__=\"LODEnd\",s.LODEnd=d=n([_(\"lodend\")],d);let h=class extends i{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=h,h.__name__=\"SelectionGeometry\",s.SelectionGeometry=h=n([_(\"selectiongeometry\")],h);let m=class extends i{};s.Reset=m,m.__name__=\"Reset\",s.Reset=m=n([_(\"reset\")],m);class x extends i{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=x,x.__name__=\"PointEvent\";let p=class extends x{constructor(e,t,s,n,_,a){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=p,p.__name__=\"Pan\",s.Pan=p=n([_(\"pan\")],p);let j=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=j,j.__name__=\"Pinch\",s.Pinch=j=n([_(\"pinch\")],j);let y=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=y,y.__name__=\"Rotate\",s.Rotate=y=n([_(\"rotate\")],y);let P=class extends x{constructor(e,t,s,n,_){super(e,t,s,n),this.sx=e,this.sy=t,this.x=s,this.y=n,this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=P,P.__name__=\"MouseWheel\",s.MouseWheel=P=n([_(\"wheel\")],P);let v=class extends x{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=n([_(\"mousemove\")],v);let O=class extends x{};s.MouseEnter=O,O.__name__=\"MouseEnter\",s.MouseEnter=O=n([_(\"mouseenter\")],O);let b=class extends x{};s.MouseLeave=b,b.__name__=\"MouseLeave\",s.MouseLeave=b=n([_(\"mouseleave\")],b);let g=class extends x{};s.Tap=g,g.__name__=\"Tap\",s.Tap=g=n([_(\"tap\")],g);let E=class extends x{};s.DoubleTap=E,E.__name__=\"DoubleTap\",s.DoubleTap=E=n([_(\"doubletap\")],E);let M=class extends x{};s.Press=M,M.__name__=\"Press\",s.Press=M=n([_(\"press\")],M);let R=class extends x{};s.PressUp=R,R.__name__=\"PressUp\",s.PressUp=R=n([_(\"pressup\")],R);let f=class extends x{};s.PanStart=f,f.__name__=\"PanStart\",s.PanStart=f=n([_(\"panstart\")],f);let S=class extends x{};s.PanEnd=S,S.__name__=\"PanEnd\",s.PanEnd=S=n([_(\"panend\")],S);let D=class extends x{};s.PinchStart=D,D.__name__=\"PinchStart\",s.PinchStart=D=n([_(\"pinchstart\")],D);let k=class extends x{};s.PinchEnd=k,k.__name__=\"PinchEnd\",s.PinchEnd=k=n([_(\"pinchend\")],k);let L=class extends x{};s.RotateStart=L,L.__name__=\"RotateStart\",s.RotateStart=L=n([_(\"rotatestart\")],L);let C=class extends x{};s.RotateEnd=C,C.__name__=\"RotateEnd\",s.RotateEnd=C=n([_(\"rotateend\")],C)},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),i=n.__importDefault(t(297)),r=t(15),a=t(19),h=t(72),_=n.__importStar(t(313)),o=t(315),c=t(9),l=t(8),p=t(32),u=t(302);class d{constructor(t,e,s){this.plot_view=t,this.toolbar=e,this.hit_area=s,this.pan_start=new r.Signal(this,\"pan:start\"),this.pan=new r.Signal(this,\"pan\"),this.pan_end=new r.Signal(this,\"pan:end\"),this.pinch_start=new r.Signal(this,\"pinch:start\"),this.pinch=new r.Signal(this,\"pinch\"),this.pinch_end=new r.Signal(this,\"pinch:end\"),this.rotate_start=new r.Signal(this,\"rotate:start\"),this.rotate=new r.Signal(this,\"rotate\"),this.rotate_end=new r.Signal(this,\"rotate:end\"),this.tap=new r.Signal(this,\"tap\"),this.doubletap=new r.Signal(this,\"doubletap\"),this.press=new r.Signal(this,\"press\"),this.pressup=new r.Signal(this,\"pressup\"),this.move_enter=new r.Signal(this,\"move:enter\"),this.move=new r.Signal(this,\"move\"),this.move_exit=new r.Signal(this,\"move:exit\"),this.scroll=new r.Signal(this,\"scroll\"),this.keydown=new r.Signal(this,\"keydown\"),this.keyup=new r.Signal(this,\"keyup\"),this.hammer=new i.default(this.hit_area,{touchAction:\"auto\",inputClass:i.default.TouchMouseInput}),this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",t=>this._mouse_move(t)),this.hit_area.addEventListener(\"mouseenter\",t=>this._mouse_enter(t)),this.hit_area.addEventListener(\"mouseleave\",t=>this._mouse_exit(t)),this.hit_area.addEventListener(\"contextmenu\",t=>this._context_menu(t)),this.hit_area.addEventListener(\"wheel\",t=>this._mouse_wheel(t)),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new u.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",t=>this._doubletap(t)),this.hammer.on(\"tap\",t=>this._tap(t)),this.hammer.on(\"press\",t=>this._press(t)),this.hammer.on(\"pressup\",t=>this._pressup(t)),this.hammer.get(\"pan\").set({direction:i.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",t=>this._pan_start(t)),this.hammer.on(\"pan\",t=>this._pan(t)),this.hammer.on(\"panend\",t=>this._pan_end(t)),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",t=>this._pinch_start(t)),this.hammer.on(\"pinch\",t=>this._pinch(t)),this.hammer.on(\"pinchend\",t=>this._pinch_end(t)),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",t=>this._rotate_start(t)),this.hammer.on(\"rotate\",t=>this._rotate(t)),this.hammer.on(\"rotateend\",t=>this._rotate_end(t))}register_tool(t){const e=t.model.event_type;null!=e&&(l.isString(e)?this._register_tool(t,e):e.forEach((e,s)=>this._register_tool(t,e,s<1)))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},h=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(\"unsupported event_type: \"+e)}s&&(null!=n._doubletap&&n.connect(this.doubletap,h(n._doubletap.bind(n))),null!=n._keydown&&n.connect(this.keydown,h(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,h(n._keyup.bind(n))),p.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(a.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e){const s=this.plot_view.get_renderer_views();for(const n of c.reversed(s)){const{level:s}=n.model;if((\"annotation\"==s||\"overlay\"==s)&&null!=n.interactive_hit&&n.interactive_hit(t,e))return n}return null}_hit_test_frame(t,e){return this.plot_view.frame.bbox.contains(t,e)}_hit_test_canvas(t,e){return this.plot_view.layout.bbox.contains(t,e)}_trigger(t,e,s){const n=this.toolbar.gestures,i=t.name.split(\":\")[0],r=this._hit_test_renderers(e.sx,e.sy),a=this._hit_test_canvas(e.sx,e.sy);switch(i){case\"move\":{const s=n[i].active;null!=s&&this.trigger(t,e,s.id);const h=this.toolbar.inspectors.filter(t=>t.active);let _=\"default\";null!=r?(_=r.cursor(e.sx,e.sy)||_,c.is_empty(h)||(t=this.move_exit)):this._hit_test_frame(e.sx,e.sy)&&(c.is_empty(h)||(_=\"crosshair\")),this.plot_view.set_cursor(_),this.plot_view.set_toolbar_visibility(a),h.map(s=>this.trigger(t,e,s.id));break}case\"tap\":{const{target:a}=s;if(null!=a&&a!=this.hit_area)return;null!=r&&null!=r.on_hit&&r.on_hit(e.sx,e.sy);const h=n[i].active;null!=h&&this.trigger(t,e,h.id);break}case\"scroll\":{const i=n[p.is_mobile?\"pinch\":\"scroll\"].active;null!=i&&(s.preventDefault(),s.stopPropagation(),this.trigger(t,e,i.id));break}case\"pan\":{const r=n[i].active;null!=r&&(s.preventDefault(),this.trigger(t,e,r.id));break}default:{const s=n[i].active;null!=s&&this.trigger(t,e,s.id)}}this._trigger_bokeh_event(e)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t){const e=(()=>{const{sx:e,sy:s}=t,n=this.plot_view.frame.x_scale.invert(e),i=this.plot_view.frame.y_scale.invert(s);switch(t.type){case\"wheel\":return new _.MouseWheel(e,s,n,i,t.delta);case\"mousemove\":return new _.MouseMove(e,s,n,i);case\"mouseenter\":return new _.MouseEnter(e,s,n,i);case\"mouseleave\":return new _.MouseLeave(e,s,n,i);case\"tap\":return new _.Tap(e,s,n,i);case\"doubletap\":return new _.DoubleTap(e,s,n,i);case\"press\":return new _.Press(e,s,n,i);case\"pressup\":return new _.PressUp(e,s,n,i);case\"pan\":return new _.Pan(e,s,n,i,t.deltaX,t.deltaY);case\"panstart\":return new _.PanStart(e,s,n,i);case\"panend\":return new _.PanEnd(e,s,n,i);case\"pinch\":return new _.Pinch(e,s,n,i,t.scale);case\"pinchstart\":return new _.PinchStart(e,s,n,i);case\"pinchend\":return new _.PinchEnd(e,s,n,i);case\"rotate\":return new _.Rotate(e,s,n,i,t.rotation);case\"rotatestart\":return new _.RotateStart(e,s,n,i);case\"rotateend\":return new _.RotateEnd(e,s,n,i);default:return}})();null!=e&&this.plot_view.model.trigger_event(e)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=h.offset(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:o.getDeltaY(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){const e=this._tap_event(t);this._trigger_bokeh_event(e),this.trigger(this.doubletap,e)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEvents=d,d.__name__=\"UIEvents\"},\n", - " function _(e,t,n){\n", - " /*!\n", - " * jQuery Mousewheel 3.1.13\n", - " *\n", - " * Copyright jQuery Foundation and other contributors\n", - " * Released under the MIT license\n", - " * http://jquery.org/license\n", - " */\n", - " function r(e){const t=getComputedStyle(e).fontSize;return null!=t?parseInt(t,10):null}Object.defineProperty(n,\"__esModule\",{value:!0}),n.getDeltaY=function(e){let t=-e.deltaY;if(e.target instanceof HTMLElement)switch(e.deltaMode){case e.DOM_DELTA_LINE:t*=r((n=e.target).offsetParent||document.body)||r(n)||16;break;case e.DOM_DELTA_PAGE:t*=function(e){return e.clientHeight}(e.target)}var n;return t}},\n", - " function _(n,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const t=(\"undefined\"!=typeof window?window.requestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.webkitRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.mozRequestAnimationFrame:void 0)||(\"undefined\"!=typeof window?window.msRequestAnimationFrame:void 0)||function(n){return n(Date.now()),-1};o.throttle=function(n,e){let o=null,i=0,u=!1;return function(){return new Promise((d,w)=>{const r=function(){i=Date.now(),o=null,u=!1;try{n(),d()}catch(n){w(n)}},a=Date.now(),f=e-(a-i);f<=0&&!u?(null!=o&&clearTimeout(o),u=!0,t(r)):o||u?d():o=setTimeout(()=>t(r),f)})}}},\n", - " function _(t,e,h){Object.defineProperty(h,\"__esModule\",{value:!0});const i=t(213),o=t(214),r=t(79);class s extends o.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0}}_measure(t){t=new i.Sizeable(t).bounded_to(this.sizing.size);const e=this.left_panel.measure({width:0,height:t.height}),h=Math.max(e.width,this.min_border.left),o=this.right_panel.measure({width:0,height:t.height}),r=Math.max(o.width,this.min_border.right),s=this.top_panel.measure({width:t.width,height:0}),n=Math.max(s.height,this.min_border.top),a=this.bottom_panel.measure({width:t.width,height:0}),g=Math.max(a.height,this.min_border.bottom),_=new i.Sizeable(t).shrink_by({left:h,right:r,top:n,bottom:g}),m=this.center_panel.measure(_);return{width:h+m.width+r,height:n+m.height+g,inner:{left:h,right:r,top:n,bottom:g},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const h=this.left_panel.measure({width:0,height:t.height}),i=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:n,top:a,right:g,bottom:_}=e;this.top_panel.set_geometry(new r.BBox({left:n,right:g,bottom:a,height:o.height})),this.bottom_panel.set_geometry(new r.BBox({left:n,right:g,top:_,height:s.height})),this.left_panel.set_geometry(new r.BBox({top:a,bottom:_,right:n,width:h.width})),this.right_panel.set_geometry(new r.BBox({top:a,bottom:_,left:g,width:i.width}))}}h.BorderLayout=s,s.__name__=\"BorderLayout\"},\n", - " function _(i,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const l=i(213),a=i(214),r=i(8),o=Math.PI/2,h=\"left\",s=\"center\",n={above:{parallel:0,normal:-o,horizontal:0,vertical:-o},below:{parallel:0,normal:o,horizontal:0,vertical:o},left:{parallel:-o,normal:0,horizontal:0,vertical:-o},right:{parallel:o,normal:0,horizontal:0,vertical:o}},d={above:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"alphabetic\",vertical:\"middle\"},below:{justified:\"bottom\",parallel:\"hanging\",normal:\"middle\",horizontal:\"hanging\",vertical:\"middle\"},left:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"},right:{justified:\"top\",parallel:\"alphabetic\",normal:\"middle\",horizontal:\"middle\",vertical:\"alphabetic\"}},_={above:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},below:{justified:s,parallel:s,normal:h,horizontal:s,vertical:h},left:{justified:s,parallel:s,normal:\"right\",horizontal:\"right\",vertical:s},right:{justified:s,parallel:s,normal:h,horizontal:h,vertical:s}},c={above:\"right\",below:h,left:\"right\",right:h},m={above:h,below:\"right\",left:\"right\",right:h};class g extends a.ContentLayoutable{constructor(i,t){switch(super(),this.side=i,this.obj=t,this.side){case\"above\":this._dim=0,this._normals=[0,-1];break;case\"below\":this._dim=0,this._normals=[0,1];break;case\"left\":this._dim=1,this._normals=[-1,0];break;case\"right\":this._dim=1,this._normals=[1,0]}this.is_horizontal?this.set_sizing({width_policy:\"max\",height_policy:\"fixed\"}):this.set_sizing({width_policy:\"fixed\",height_policy:\"max\"})}_content_size(){return new l.Sizeable(this.get_oriented_size())}get_oriented_size(){const{width:i,height:t}=this.obj.get_size();return!this.obj.rotate||this.is_horizontal?{width:i,height:t}:{width:t,height:i}}has_size_changed(){const{width:i,height:t}=this.get_oriented_size();return this.is_horizontal?this.bbox.height!=t:this.bbox.width!=i}get dimension(){return this._dim}get normals(){return this._normals}get is_horizontal(){return 0==this._dim}get is_vertical(){return 1==this._dim}apply_label_text_heuristics(i,t){const e=this.side;let l,a;r.isString(t)?(l=d[e][t],a=_[e][t]):t<0?(l=\"middle\",a=c[e]):(l=\"middle\",a=m[e]),i.textBaseline=l,i.textAlign=a}get_label_angle_heuristic(i){return n[this.side][i]}}e.SidePanel=g,g.__name__=\"SidePanel\"},\n", - " function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=t(15),o=t(72),a=t(37),n=t(312),p=new i.Signal0({},\"gmaps_ready\");class l extends n.PlotView{initialize(){this.pause(),super.initialize(),this._tiles_loaded=!1,this.zoom_count=0;const{zoom:t,lat:e,lng:s}=this.model.map_options;if(this.initial_zoom=t,this.initial_lat=e,this.initial_lng=s,\"undefined\"==typeof google||null==google.maps){if(void 0===window._bokeh_gmaps_callback){!function(t){window._bokeh_gmaps_callback=()=>p.emit();const e=document.createElement(\"script\");e.type=\"text/javascript\",e.src=`https://maps.googleapis.com/maps/api/js?v=3.36&key=${t}&callback=_bokeh_gmaps_callback`,document.body.appendChild(e)}(atob(this.model.api_key))}p.connect(()=>this.request_render())}this.unpause()}remove(){o.remove(this.map_el),super.remove()}update_range(t){if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(t.sdx||0,t.sdy||0),super.update_range(t);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t);const e=t.factor<0?-1:1,s=this.map.getZoom(),i=s+e;if(i>=2){this.map.setZoom(i);const[t,e,,]=this._get_projected_bounds();e-t<0&&this.map.setZoom(s)}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=o.div({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",()=>this._set_bokeh_ranges()),t.event.addListener(this.map,\"bounds_changed\",()=>this._set_bokeh_ranges()),t.event.addListenerOnce(this.map,\"tilesloaded\",()=>this._render_finished()),this.connect(this.model.properties.map_options.change,()=>this._update_options()),this.connect(this.model.map_options.properties.styles.change,()=>this._update_styles()),this.connect(this.model.map_options.properties.lat.change,()=>this._update_center(\"lat\")),this.connect(this.model.map_options.properties.lng.change,()=>this._update_center(\"lng\")),this.connect(this.model.map_options.properties.zoom.change,()=>this._update_zoom()),this.connect(this.model.map_options.properties.map_type.change,()=>this._update_map_type()),this.connect(this.model.map_options.properties.scale_control.change,()=>this._update_scale_control()),this.connect(this.model.map_options.properties.tilt.change,()=>this._update_tilt())}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,i]=this._get_latlon_bounds(),[o,n]=a.wgs84_mercator.compute(t,s),[p,l]=a.wgs84_mercator.compute(e,i);return[o,p,n,l]}_set_bokeh_ranges(){const[t,e,s,i]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:i})}_update_center(t){const e=this.map.getCenter().toJSON();e[t]=this.model.map_options[t],this.map.setCenter(e),this._set_bokeh_ranges()}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,i,o]=e;this.map_el.style.top=s+\"px\",this.map_el.style.left=t+\"px\",this.map_el.style.width=i+\"px\",this.map_el.style.height=o+\"px\"}}_paint_empty(t,e){const s=this.layout.bbox.width,i=this.layout.bbox.height,[o,a,n,p]=e;t.clearRect(0,0,s,i),t.beginPath(),t.moveTo(0,0),t.lineTo(0,i),t.lineTo(s,i),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(o,a),t.lineTo(o+n,a),t.lineTo(o+n,a+p),t.lineTo(o,a+p),t.lineTo(o,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=this.model.border_fill_color,t.fill())}}s.GMapPlotView=l,l.__name__=\"GMapPlotView\"},\n", - " function _(a,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});var g=a(211);n.DataRange=g.DataRange;var R=a(210);n.DataRange1d=R.DataRange1d;var r=a(98);n.FactorRange=r.FactorRange;var t=a(99);n.Range=t.Range;var d=a(158);n.Range1d=d.Range1d},\n", - " function _(e,r,d){Object.defineProperty(d,\"__esModule\",{value:!0});var n=e(90);d.GlyphRenderer=n.GlyphRenderer;var R=e(116);d.GraphRenderer=R.GraphRenderer;var a=e(178);d.GuideRenderer=a.GuideRenderer;var G=e(70);d.Renderer=G.Renderer},\n", - " function _(a,e,l){Object.defineProperty(l,\"__esModule\",{value:!0});var c=a(209);l.CategoricalScale=c.CategoricalScale;var r=a(146);l.ContinuousScale=r.ContinuousScale;var n=a(145);l.LinearScale=n.LinearScale;var o=a(156);l.LinearInterpolationScale=o.LinearInterpolationScale;var i=a(157);l.LogScale=i.LogScale;var S=a(147);l.Scale=S.Scale},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});e(1).__exportStar(e(118),o);var n=e(88);o.Selection=n.Selection},\n", - " function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});var o=a(325);r.ServerSentDataSource=o.ServerSentDataSource;var S=a(327);r.AjaxDataSource=S.AjaxDataSource;var u=a(85);r.ColumnDataSource=u.ColumnDataSource;var t=a(86);r.ColumnarDataSource=t.ColumnarDataSource;var c=a(114);r.CDSView=c.CDSView;var D=a(87);r.DataSource=D.DataSource;var v=a(328);r.GeoJSONDataSource=v.GeoJSONDataSource;var n=a(326);r.WebDataSource=n.WebDataSource},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const a=e(326);class s extends a.WebDataSource{constructor(e){super(e),this.initialized=!1}destroy(){super.destroy()}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{this.load_data(JSON.parse(e.data),this.mode,this.max_size)}}}}i.ServerSentDataSource=s,s.__name__=\"ServerSentDataSource\"},\n", - " function _(e,t,a){Object.defineProperty(a,\"__esModule\",{value:!0});const r=e(1),s=e(85),i=r.__importStar(e(18));class n extends s.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:r}=this;let s;switch(s=null!=r?r.execute(this,{response:e}):e,t){case\"replace\":this.data=s;break;case\"append\":{const e=this.data;for(const t of this.columns()){const r=Array.from(e[t]),i=Array.from(s[t]);s[t]=r.concat(i).slice(-a)}this.data=s;break}}}static init_WebDataSource(){this.define({mode:[i.UpdateMode,\"replace\"],max_size:[i.Number],adapter:[i.Any,null],data_url:[i.String]})}}a.WebDataSource=n,n.__name__=\"WebDataSource\",n.init_WebDataSource()},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),a=t(326),r=t(19),o=s.__importStar(t(18)),n=t(13);class d extends a.WebDataSource{constructor(t){super(t),this.initialized=!1}static init_AjaxDataSource(){this.define({polling_interval:[o.Number],content_type:[o.String,\"application/json\"],http_headers:[o.Any,{}],method:[o.HTTPMethod,\"POST\"],if_modified:[o.Boolean,!1]})}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=0,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",()=>this.do_load(s,t,e)),s.addEventListener(\"error\",()=>this.do_error(s)),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of n.entries(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){r.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=d,d.__name__=\"AjaxDataSource\",d.init_AjaxDataSource()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1),n=e(86),s=e(19),a=r.__importStar(e(18)),i=e(9),l=e(13);function c(e){return null!=e?e:NaN}class _ extends n.ColumnarDataSource{constructor(e){super(e)}static init_GeoJSONDataSource(){this.define({geojson:[a.Any]}),this.internal({data:[a.Any,{}]})}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,()=>this._update_data())}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return i.range(0,e).map(e=>[])}_get_new_nan_array(e){return i.range(0,e).map(e=>NaN)}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of l.entries(s))t.hasOwnProperty(e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=c(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=c(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&s.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const a=n.reduce(r);for(let e=0;ethis.get_resolution(t))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=l,l.__name__=\"MercatorTileSource\",l.init_MercatorTileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1),n=e(81),s=e(13),l=i.__importStar(e(18));class a extends n.Model{constructor(e){super(e)}static init_TileSource(){this.define({url:[l.String,\"\"],tile_size:[l.Number,256],max_zoom:[l.Number,30],min_zoom:[l.Number,0],extra_url_vars:[l.Any,{}],attribution:[l.String,\"\"],x_origin_offset:[l.Number],y_origin_offset:[l.Number],initial_resolution:[l.Number]})}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,()=>this._clear_cache())}string_lookup_replace(e,t){let r=e;for(const[e,i]of s.entries(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map(e=>parseInt(e));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,s]=t,l=(n-r)/2+r,a=(s-i)/2+i;e.sort((function(e,t){return Math.sqrt((l-e[0])**2+(a-e[1])**2)-Math.sqrt((l-t[0])**2+(a-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=a,a.__name__=\"TileSource\",a.init_TileSource()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const n=e(37);function o(e,t){return n.wgs84_mercator.compute(e,t)}function c(e,t){return n.wgs84_mercator.invert(e,t)}r.geographic_to_meters=o,r.meters_to_geographic=c,r.geographic_extent_to_meters=function(e){const[t,r,n,c]=e,[_,u]=o(t,r),[i,g]=o(n,c);return[_,u,i,g]},r.meters_extent_to_geographic=function(e){const[t,r,n,o]=e,[_,u]=c(t,r),[i,g]=c(n,o);return[_,u,i,g]}},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const _=e(333);class s extends _.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const _=this.string_lookup_replace(this.url,this.extra_url_vars),[s,o,u]=this.tms_to_wmts(e,t,r),c=this.tile_xyz_to_quadkey(s,o,u);return _.replace(\"{Q}\",c)}}r.QUADKEYTileSource=s,s.__name__=\"QUADKEYTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=t(1),_=t(338),n=t(91),a=t(158),r=t(72),o=s.__importStar(t(18)),h=t(251),l=t(9),d=t(8),m=t(89),c=t(85),g=t(339),p=s.__importDefault(t(340));class u extends n.DataRendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.request_render()),this.connect(this.model.tile_source.change,()=>this.request_render())}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&r.removeElement(this.attribution_el);const{attribution:t}=this.model.tile_source;if(d.isString(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=r.div({class:g.bk_tile_attribution,style:{position:\"absolute\",right:s+\"px\",bottom:_+\"px\",\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof a.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof a.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const[n,a,r]=this.model.tile_source.normalize_xyz(t,e,i),o={img:void 0,tile_coords:[t,e,i],normalized_coords:[n,a,r],quadkey:this.model.tile_source.tile_xyz_to_quadkey(t,e,i),cache_key:this.model.tile_source.tile_xyz_to_key(t,e,i),bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]},l=this.model.tile_source.get_image_url(n,a,r);new h.ImageLoader(l,{loaded:t=>{Object.assign(o,{img:t,loaded:!0}),_?(o.finished=!0,this.notify_finished()):this.request_render()},failed(){o.finished=!0}}),this.model.tile_source.tiles.set(o.cache_key,o),this._tiles.push(o)}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0===this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,r=t,o=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,r,o,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.properties.outline_line_width.value(),e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,r=i,o=!0),o&&(this.x_range.setv({x_range:{start:s[0],end:s[2]}}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,r),d=[],m=[],c=[],g=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),r=t.tiles.get(a);if(null!=r&&r.loaded)m.push(a);else if(this.model.render_parents){const[e,a,r]=t.get_closest_parent_by_tile_xyz(i,s,n),o=t.tile_xyz_to_key(e,a,r),h=t.tiles.get(o);if(null!=h&&h.loaded&&!l.includes(c,o)&&c.push(o),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&g.push(e)}}}null==r&&d.push(e)}this._render_tiles(c),this._render_tiles(g),this._render_tiles(m),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout(()=>this._fetch_tiles(d),65)}}i.TileRendererView=u,u.__name__=\"TileRendererView\";class b extends n.DataRenderer{constructor(t){super(t),this._selection_manager=new m.SelectionManager({source:new c.ColumnDataSource})}static init_TileRenderer(){this.prototype.default_view=u,this.define({alpha:[o.Number,1],smoothing:[o.Boolean,!0],tile_source:[o.Instance,()=>new _.WMTSTileSource],render_parents:[o.Boolean,!0]})}get_selection_manager(){return this._selection_manager}}i.TileRenderer=b,b.__name__=\"TileRenderer\",b.init_TileRenderer()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(333);class s extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,_]=this.tms_to_wmts(e,t,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",_.toString())}}r.WMTSTileSource=s,s.__name__=\"WMTSTileSource\"},\n", - " function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0}),i.bk_tile_attribution=\"bk-tile-attribution\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});n.default=\"\\n.bk-root .bk-tile-attribution a {\\n color: black;\\n}\\n\"},\n", - " function _(e,r,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(333);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=c,c.__name__=\"TMSTileSource\"},\n", - " function _(e,r,a){Object.defineProperty(a,\"__esModule\",{value:!0});var t=e(343);a.CanvasTexture=t.CanvasTexture;var u=e(345);a.ImageURLTexture=u.ImageURLTexture;var v=e(344);a.Texture=v.Texture},\n", - " function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const r=t(1),c=t(344),s=r.__importStar(t(18)),i=t(29);class a extends c.Texture{constructor(t){super(t)}static init_CanvasTexture(){this.define({code:[s.String]})}get func(){const t=i.use_strict(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){return r=>{const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),r.createPattern(c,this.repetition)}}}n.CanvasTexture=a,a.__name__=\"CanvasTexture\",a.init_CanvasTexture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),n=e(81),o=r.__importStar(e(18));class _ extends n.Model{constructor(e){super(e)}static init_Texture(){this.define({repetition:[o.TextureRepetition,\"repeat\"]})}onload(e){e()}}i.Texture=_,_.__name__=\"Texture\",_.init_Texture()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),a=e(344),n=r.__importStar(e(18)),s=e(251);class o extends a.Texture{constructor(e){super(e)}static init_ImageURLTexture(){this.define({url:[n.String]})}initialize(){super.initialize(),this._loader=new s.ImageLoader(this.url)}get_pattern(e,t,i){return e=>this._loader.finished?e.createPattern(this._loader.image,this.repetition):null}onload(e){this._loader.promise.then(()=>e())}}i.ImageURLTexture=o,o.__name__=\"ImageURLTexture\",o.init_ImageURLTexture()},\n", - " function _(o,l,T){Object.defineProperty(T,\"__esModule\",{value:!0});var a=o(307);T.ActionTool=a.ActionTool;var r=o(347);T.CustomAction=r.CustomAction;var e=o(308);T.HelpTool=e.HelpTool;var v=o(348);T.RedoTool=v.RedoTool;var t=o(349);T.ResetTool=t.ResetTool;var n=o(350);T.SaveTool=n.SaveTool;var s=o(351);T.UndoTool=s.UndoTool;var i=o(352);T.ZoomInTool=i.ZoomInTool;var P=o(355);T.ZoomOutTool=P.ZoomOutTool;var c=o(296);T.ButtonTool=c.ButtonTool;var d=o(356);T.EditTool=d.EditTool;var u=o(357);T.BoxEditTool=u.BoxEditTool;var y=o(358);T.FreehandDrawTool=y.FreehandDrawTool;var m=o(359);T.PointDrawTool=m.PointDrawTool;var x=o(360);T.PolyDrawTool=x.PolyDrawTool;var B=o(361);T.PolyTool=B.PolyTool;var S=o(362);T.PolyEditTool=S.PolyEditTool;var b=o(363);T.BoxSelectTool=b.BoxSelectTool;var h=o(366);T.BoxZoomTool=h.BoxZoomTool;var E=o(306);T.GestureTool=E.GestureTool;var Z=o(367);T.LassoSelectTool=Z.LassoSelectTool;var p=o(369);T.LineEditTool=p.LineEditTool;var w=o(371);T.PanTool=w.PanTool;var C=o(368);T.PolySelectTool=C.PolySelectTool;var D=o(372);T.RangeTool=D.RangeTool;var H=o(364);T.SelectTool=H.SelectTool;var R=o(373);T.TapTool=R.TapTool;var A=o(374);T.WheelPanTool=A.WheelPanTool;var I=o(375);T.WheelZoomTool=I.WheelZoomTool;var L=o(376);T.CrosshairTool=L.CrosshairTool;var W=o(377);T.CustomJSHover=W.CustomJSHover;var O=o(378);T.HoverTool=O.HoverTool;var _=o(295);T.InspectTool=_.InspectTool;var f=o(298);T.Tool=f.Tool;var g=o(379);T.ToolProxy=g.ToolProxy;var F=o(294);T.Toolbar=F.Toolbar;var G=o(305);T.ToolbarBase=G.ToolbarBase;var J=o(380);T.ProxyToolbar=J.ProxyToolbar;var U=o(380);T.ToolbarBox=U.ToolbarBox},\n", - " function _(t,o,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),s=t(307),e=n.__importStar(t(18)),c=t(299);class _ extends s.ActionToolButtonView{css_classes(){return super.css_classes().concat(c.bk_toolbar_button_custom_action)}}i.CustomActionButtonView=_,_.__name__=\"CustomActionButtonView\";class l extends s.ActionToolView{doit(){null!=this.model.callback&&this.model.callback.execute(this.model)}}i.CustomActionView=l,l.__name__=\"CustomActionView\";class u extends s.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=_}static init_CustomAction(){this.prototype.default_view=l,this.define({action_tooltip:[e.String,\"Perform a Custom Action\"],callback:[e.Any],icon:[e.String]})}get tooltip(){return this.action_tooltip}}i.CustomAction=u,u.__name__=\"CustomAction\",u.init_CustomAction()},\n", - " function _(o,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const i=o(307),s=o(309);class n extends i.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_redo())}doit(){this.plot_view.redo()}}t.RedoToolView=n,n.__name__=\"RedoToolView\";class _ extends i.ActionTool{constructor(o){super(o),this.tool_name=\"Redo\",this.icon=s.bk_tool_icon_redo}static init_RedoTool(){this.prototype.default_view=n,this.override({disabled:!0}),this.register_alias(\"redo\",()=>new _)}}t.RedoTool=_,_.__name__=\"RedoTool\",_.init_RedoTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(307),i=e(309);class _ extends s.ActionToolView{doit(){this.plot_view.reset()}}o.ResetToolView=_,_.__name__=\"ResetToolView\";class l extends s.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=i.bk_tool_icon_reset}static init_ResetTool(){this.prototype.default_view=_,this.register_alias(\"reset\",()=>new l)}}o.ResetTool=l,l.__name__=\"ResetTool\",l.init_ResetTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const a=e(307),i=e(309);class n extends a.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:e});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=n,n.__name__=\"SaveToolView\";class s extends a.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=i.bk_tool_icon_save}static init_SaveTool(){this.prototype.default_view=n,this.register_alias(\"save\",()=>new s)}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=s,s.__name__=\"SaveTool\",s.init_SaveTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(307),i=o(309);class s extends n.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state_changed,()=>this.model.disabled=!this.plot_view.can_undo())}doit(){this.plot_view.undo()}}e.UndoToolView=s,s.__name__=\"UndoToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=i.bk_tool_icon_undo}static init_UndoTool(){this.prototype.default_view=s,this.override({disabled:!0}),this.register_alias(\"undo\",()=>new _)}}e.UndoTool=_,_.__name__=\"UndoTool\",_.init_UndoTool()},\n", - " function _(o,i,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=o(353),s=o(309);class t extends n.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=s.bk_tool_icon_zoom_in}static init_ZoomInTool(){this.prototype.default_view=n.ZoomBaseToolView,this.register_alias(\"zoom_in\",()=>new t({dimensions:\"both\"})),this.register_alias(\"xzoom_in\",()=>new t({dimensions:\"width\"})),this.register_alias(\"yzoom_in\",()=>new t({dimensions:\"height\"}))}}e.ZoomInTool=t,t.__name__=\"ZoomInTool\",t.init_ZoomInTool()},\n", - " function _(o,t,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=o(1),s=o(307),n=o(354),_=i.__importStar(o(18));class l extends s.ActionToolView{doit(){const o=this.plot_view.frame,t=this.model.dimensions,e=\"width\"==t||\"both\"==t,i=\"height\"==t||\"both\"==t,s=n.scale_range(o,this.model.sign*this.model.factor,e,i);this.plot_view.push_state(\"zoom_out\",{range:s}),this.plot_view.update_range(s,!1,!0),this.model.document&&this.model.document.interactive_start(this.plot_model)}}e.ZoomBaseToolView=l,l.__name__=\"ZoomBaseToolView\";class a extends s.ActionTool{constructor(o){super(o)}static init_ZoomBaseTool(){this.prototype.default_view=l,this.define({factor:[_.Percent,.1],dimensions:[_.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.ZoomBaseTool=a,a.__name__=\"ZoomBaseTool\",a.init_ZoomBaseTool()},\n", - " function _(n,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=n(10);function r(n,e,t){const[o,r]=[n.start,n.end],s=null!=t?t:(r+o)/2;return[o-(o-s)*e,r-(r-s)*e]}function s(n,[e,t]){const o=new Map;for(const[r,s]of n){const[n,c]=s.r_invert(e,t);o.set(r,{start:n,end:c})}return o}t.scale_highlow=r,t.get_info=s,t.scale_range=function(n,e,t=!0,c=!0,l){e=o.clamp(e,-.9,.9);const a=t?e:0,[u,_]=r(n.bbox.h_range,a,null!=l?l.x:void 0),i=s(n.x_scales,[u,_]),f=c?e:0,[d,b]=r(n.bbox.v_range,f,null!=l?l.y:void 0);return{xrs:i,yrs:s(n.y_scales,[d,b]),factor:e}}},\n", - " function _(o,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const e=o(353),s=o(309);class n extends e.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=s.bk_tool_icon_zoom_out}static init_ZoomOutTool(){this.prototype.default_view=e.ZoomBaseToolView,this.register_alias(\"zoom_out\",()=>new n({dimensions:\"both\"})),this.register_alias(\"xzoom_out\",()=>new n({dimensions:\"width\"})),this.register_alias(\"yzoom_out\",()=>new n({dimensions:\"height\"}))}}i.ZoomOutTool=n,n.__name__=\"ZoomOutTool\",n.init_ZoomOutTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),i=e(9),n=e(8),r=e(11),_=e(306);class c extends _.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:o}=e;return t||o?t&&!o?\"append\":!t&&o?\"intersect\":t&&o?\"subtract\":void r.unreachable():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,o){if(!this.plot_view.frame.bbox.contains(e,t))return null;const s=this.plot_view.renderer_views.get(o);return[s.coordinates.x_scale.invert(e),s.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,o=t.selected.indices;o.sort();for(const e of t.columns()){const s=t.get_array(e);for(let e=0;ethis._show_vertices())}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=d,d.__name__=\"PolyDrawToolView\";class l extends n.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.bk_tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}static init_PolyDrawTool(){this.prototype.default_view=d,this.define({drag:[a.Boolean,!0],num_objects:[a.Int,0]})}}s.PolyDrawTool=l,l.__name__=\"PolyDrawTool\",l.init_PolyDrawTool()},\n", - " function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const o=e(1).__importStar(e(18)),i=e(8),s=e(356);class _ extends s.EditToolView{_set_vertices(e,t){const r=this.model.vertex_renderer.glyph,o=this.model.vertex_renderer.data_source,[s,_]=[r.x.field,r.y.field];s&&(i.isArray(e)?o.data[s]=e:r.x={value:e}),_&&(i.isArray(t)?o.data[_]=t:r.y={value:t}),this._emit_cds_changes(o,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,t,r){if(this.model.vertex_renderer){const o=this._select_event(e,\"replace\",[this.model.vertex_renderer]),i=this.model.vertex_renderer.data_source,s=this.model.vertex_renderer.glyph,[_,l]=[s.x.field,s.y.field];if(o.length){const e=i.selected.indices[0];_&&(t=i.data[_][e]),l&&(r=i.data[l][e]),i.selection_manager.clear()}}return[t,r]}}r.PolyToolView=_,_.__name__=\"PolyToolView\";class l extends s.EditTool{constructor(e){super(e)}static init_PolyTool(){this.prototype.default_view=_,this.define({vertex_renderer:[o.Instance]})}}r.PolyTool=l,l.__name__=\"PolyTool\",l.init_PolyTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(72),i=e(8),_=e(361),d=e(309);class n extends _.PolyToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this._select_event(e,\"replace\",this.model.renderers);if(!t.length)return this._set_vertices([],[]),this._selected_renderer=null,void(this._drawing=!1);const s=t[0],r=s.glyph,_=s.data_source,d=_.selected.indices[0],[n,l]=[r.xs.field,r.ys.field];let a,c;n?(a=_.data[n][d],i.isArray(a)||(_.data[n][d]=a=Array.from(a))):a=r.xs.value,l?(c=_.data[l][d],i.isArray(c)||(_.data[l][d]=c=Array.from(c))):c=r.ys.value,this._selected_renderer=s,this._set_vertices(a,c)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===r.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==r.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=n,n.__name__=\"PolyEditToolView\";class l extends _.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=d.bk_tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_PolyEditTool(){this.prototype.default_view=n}}s.PolyEditTool=l,l.__name__=\"PolyEditTool\",l.init_PolyEditTool()},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(1),i=e(364),l=e(124),_=s.__importStar(e(18)),n=e(309);class c extends i.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.push_state(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const _={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(_,i,l)}}o.BoxSelectToolView=c,c.__name__=\"BoxSelectToolView\";const r=()=>new l.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=n.bk_tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}static init_BoxSelectTool(){this.prototype.default_view=c,this.define({dimensions:[_.Dimensions,\"both\"],select_every_mousemove:[_.Boolean,!1],overlay:[_.Instance,r],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_select\",()=>new h),this.register_alias(\"xbox_select\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_select\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}o.BoxSelectTool=h,h.__name__=\"BoxSelectTool\",h.init_BoxSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(1),o=e(306),r=e(90),c=e(116),i=e(365),l=n.__importStar(e(18)),a=e(72),_=e(313),d=e(15),h=e(11);class p extends o.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect(()=>this._clear())}get computed_renderers(){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;return i.compute_renderers(e,t,s)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof r.GlyphRenderer)n=s.data_source;else{if(!(s instanceof c.GraphRenderer))continue;n=s.node_renderer.data_source}const o=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...o,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void h.unreachable():this.model.mode}_keyup(e){e.keyCode==a.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();this.plot_view.request_render()}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,o]of n){const n=o[0].get_selection_manager(),r=[];for(const e of o){const t=this.plot_view.renderer_views.get(e);null!=t&&r.push(t)}n.select(r,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let o;switch(e.type){case\"point\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:r}=e,c=s.invert(t),i=n.invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:r,sy0:c,sy1:i}=e,[l,a]=s.r_invert(t,r),[_,d]=n.r_invert(c,i);o=Object.assign(Object.assign({},e),{x0:l,y0:_,x1:a,y1:d});break}case\"poly\":{const{sx:t,sy:r}=e,c=s.v_invert(t),i=n.v_invert(r);o=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new _.SelectionGeometry(o,t))}}s.SelectToolView=p,p.__name__=\"SelectToolView\";class u extends o.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new d.Signal0(this,\"clear\")}static init_SelectTool(){this.define({renderers:[l.Any,\"auto\"],names:[l.Array,[]],mode:[l.Any,\"replace\"]})}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=u,u.__name__=\"SelectTool\",u.init_SelectTool()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(9);t.compute_renderers=function(e,n,t){if(null==e)return[];let u=\"auto\"==e?n:e;return t.length>0&&(u=u.filter(e=>r.includes(t,e.name))),u}},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const s=t(1),i=t(306),n=t(124),_=s.__importStar(t(18)),a=t(309);class l extends i.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew n.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class h extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=a.bk_tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}static init_BoxZoomTool(){this.prototype.default_view=l,this.define({dimensions:[_.Dimensions,\"both\"],overlay:[_.Instance,r],match_aspect:[_.Boolean,!1],origin:[_.BoxOrigin,\"corner\"]}),this.register_alias(\"box_zoom\",()=>new h({dimensions:\"both\"})),this.register_alias(\"xbox_zoom\",()=>new h({dimensions:\"width\"})),this.register_alias(\"ybox_zoom\",()=>new h({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}e.BoxZoomTool=h,h.__name__=\"BoxZoomTool\",h.init_BoxZoomTool()},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(1),a=e(364),i=e(368),l=e(72),_=o.__importStar(e(18)),c=e(309);class n extends a.SelectToolView{initialize(){super.initialize(),this.data=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_overlay()}_keyup(e){e.keyCode==l.Keys.Enter&&this._clear_overlay()}_pan_start(e){const{sx:s,sy:t}=e;this.data={sx:[s],sy:[t]}}_pan(e){const{sx:s,sy:t}=e,[o,a]=this.plot_view.frame.bbox.clip(s,t);this.data.sx.push(o),this.data.sy.push(a);this.model.overlay.update({xs:this.data.sx,ys:this.data.sy}),this.model.select_every_mousemove&&this._do_select(this.data.sx,this.data.sy,!1,this._select_mode(e))}_pan_end(e){this._clear_overlay(),this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"lasso_select\",{selection:this.plot_view.get_selection()})}_clear_overlay(){this.model.overlay.update({xs:[],ys:[]})}_do_select(e,s,t,o){const a={type:\"poly\",sx:e,sy:s};this._select(a,t,o)}}t.LassoSelectToolView=n,n.__name__=\"LassoSelectToolView\";class h extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Lasso Select\",this.icon=c.bk_tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}static init_LassoSelectTool(){this.prototype.default_view=n,this.define({select_every_mousemove:[_.Boolean,!0],overlay:[_.Instance,i.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"lasso_select\",()=>new h)}}t.LassoSelectTool=h,h.__name__=\"LassoSelectTool\",h.init_LassoSelectTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const l=e(1),i=e(364),o=e(166),a=e(72),_=l.__importStar(e(18)),c=e(9),n=e(309);class h extends i.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._active_change())}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==a.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.push_state(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:c.copy(this.data.sx),ys:c.copy(this.data.sy)}))}_do_select(e,t,s,l){const i={type:\"poly\",sx:e,sy:t};this._select(i,s,l)}}s.PolySelectToolView=h,h.__name__=\"PolySelectToolView\",s.DEFAULT_POLY_OVERLAY=()=>new o.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class y extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=n.bk_tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}static init_PolySelectTool(){this.prototype.default_view=h,this.define({overlay:[_.Instance,s.DEFAULT_POLY_OVERLAY]}),this.register_alias(\"poly_select\",()=>new y)}}s.PolySelectTool=y,y.__name__=\"PolySelectTool\",y.init_PolySelectTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(370),r=s.__importStar(e(18)),_=e(309);class d extends n.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const i of t){1==this._select_event(e,\"replace\",[i]).length&&(this._selected_renderer=i)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[i,s]=[t.x.field,t.y.field],n=e.get_array(i),r=e.get_array(s);this._set_intersection(n,r)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const i=this._select_mode(e);if(0==this._select_event(e,i,[t]).length)return}const i=this._select_mode(e);this._select_event(e,i,[t]),this._select_event(e,i,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[i,s]=[e.x.field,e.y.field];if(i&&s){const e=t.data[i],n=t.data[s];this._selected_renderer.data_source.data[i]=e,this._selected_renderer.data_source.data[s]=n}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}i.LineEditToolView=d,d.__name__=\"LineEditToolView\";class o extends n.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=_.bk_tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}static init_LineEditTool(){this.prototype.default_view=d,this.define({dimensions:[r.Dimensions,\"both\"]})}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}i.LineEditTool=o,o.__name__=\"LineEditTool\",o.init_LineEditTool()},\n", - " function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1).__importStar(e(18)),o=e(8),s=e(356);class _ extends s.EditToolView{_set_intersection(e,i){const t=this.model.intersection_renderer.glyph,n=this.model.intersection_renderer.data_source,[s,_]=[t.x.field,t.y.field];s&&(o.isArray(e)?n.data[s]=e:t.x={value:e}),_&&(o.isArray(i)?n.data[_]=i:t.y={value:i}),this._emit_cds_changes(n,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}t.LineToolView=_,_.__name__=\"LineToolView\";class r extends s.EditTool{constructor(e){super(e)}static init_LineTool(){this.prototype.default_view=_,this.define({intersection_renderer:[n.Instance]})}}t.LineTool=r,r.__name__=\"LineTool\",r.init_LineTool()},\n", - " function _(t,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const n=t(1),i=t(306),o=n.__importStar(t(18)),a=t(309);function _(t,s,e){const n=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,e);n.set(i,{start:t,end:a})}return n}e.update_ranges=_;class h extends i.GestureToolView{_pan_start(t){this.last_dx=0,this.last_dy=0;const{sx:s,sy:e}=t,n=this.plot_view.frame.bbox;if(!n.contains(s,e)){const t=n.h_range,i=n.v_range;(st.end)&&(this.v_axis_only=!0),(ei.end)&&(this.h_axis_only=!0)}null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan(t){this._update(t.deltaX,t.deltaY),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.push_state(\"pan\",{range:this.pan_info})}_update(t,s){const e=this.plot_view.frame,n=t-this.last_dx,i=s-this.last_dy,o=e.bbox.h_range,a=o.start-n,h=o.end-n,l=e.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,x,y,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=h,m=-n),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(x=l.start,y=l.end,g=0):(x=r,y=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:b}=e,f=_(w,c,u),v=_(b,x,y);this.pan_info={xrs:f,yrs:v,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,!0)}}e.PanToolView=h,h.__name__=\"PanToolView\";class l extends i.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}static init_PanTool(){this.prototype.default_view=h,this.define({dimensions:[o.Dimensions,\"both\"]}),this.register_alias(\"pan\",()=>new l({dimensions:\"both\"})),this.register_alias(\"xpan\",()=>new l({dimensions:\"width\"})),this.register_alias(\"ypan\",()=>new l({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(\"Pan\",this.dimensions)}get icon(){switch(this.dimensions){case\"both\":return a.bk_tool_icon_pan;case\"width\":return a.bk_tool_icon_xpan;case\"height\":return a.bk_tool_icon_ypan}}}e.PanTool=l,l.__name__=\"PanTool\",l.init_PanTool()},\n", - " function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(124),l=e(19),a=s.__importStar(e(18)),r=e(306),o=e(309);function _(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function h(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function u(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function c(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function g(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,_(i))}function y(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=_,i.is_near=h,i.is_inside=d,i.sides_inside=u,i.compute_value=c,i.update_range_end_side=g,i.update_range_start_side=y,i.update_range=f;class p extends r.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,()=>this.model.update_overlay_from_ranges()),null!=this.model.y_range&&this.connect(this.model.y_range.change,()=>this.model.update_overlay_from_ranges())}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,l=s.x_scale,a=s.y_scale,r=this.model.overlay,{left:o,right:_,top:u,bottom:c}=r,g=this.model.overlay.properties.line_width.value()+n.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(h(e.sx,o,l,g)?this.side=1:h(e.sx,_,l,g)?this.side=2:d(e.sx,e.sy,l,a,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&h(e.sy,c,a,g)&&(this.side=4),0==this.side&&h(e.sy,u,a,g)?this.side=5:d(e.sx,e.sy,l,a,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)f(n,a,i,t.x_range);else if(1==this.side){const e=c(n.start,a,i,t.x_range);this.side=y(e,n,this.side)}else if(2==this.side){const e=c(n.end,a,i,t.x_range);this.side=g(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)f(l,r,s,t.y_range);else if(4==this.side){const e=c(l.start,r,s,t.y_range);this.side=y(e,l,this.side)}else if(5==this.side){const e=c(l.end,r,s,t.y_range);this.side=g(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const m=()=>new n.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class v extends r.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=o.bk_tool_icon_range,this.event_type=\"pan\",this.default_order=1}static init_RangeTool(){this.prototype.default_view=p,this.define({x_range:[a.Instance,null],x_interaction:[a.Boolean,!0],y_range:[a.Instance,null],y_interaction:[a.Boolean,!0],overlay:[a.Instance,m]})}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,l.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=v,v.__name__=\"RangeTool\",v.init_RangeTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),i=e(364),c=o.__importStar(e(18)),n=e(309);class a extends i.SelectToolView{_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const o=this.model.callback;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,c]of i){const i=c[0].get_selection_manager(),n=c.map(e=>this.plot_view.renderer_views.get(e));if(i.select(n,e,t,s)&&null!=o){const t=n[0].coordinates.x_scale.invert(e.sx),s=n[0].coordinates.y_scale.invert(e.sy),c={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,c)}}this._emit_selection_event(e),this.plot_view.push_state(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),c=s.coordinates.y_scale.invert(e.sy),n={geometries:Object.assign(Object.assign({},e),{x:t,y:c}),source:i.source};o.execute(this.model,n)}}}}s.TapToolView=a,a.__name__=\"TapToolView\";class _ extends i.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=n.bk_tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}static init_TapTool(){this.prototype.default_view=a,this.define({behavior:[c.TapBehavior,\"select\"],callback:[c.Any]}),this.register_alias(\"click\",()=>new _({behavior:\"inspect\"})),this.register_alias(\"tap\",()=>new _)}}s.TapTool=_,_.__name__=\"TapTool\",_.init_TapTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),o=e(306),n=i.__importStar(e(18)),a=e(309),l=e(371);class _ extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,[o,n]=[s.start,s.end],[a,_]=[i.start,i.end];let h,r,d,p;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-a);h=o,r=n,d=a-t*e,p=_-t*e;break}case\"width\":{const t=Math.abs(n-o);h=o-t*e,r=n-t*e,d=a,p=_;break}default:throw new Error(\"this shouldn't have happened\")}const{x_scales:c,y_scales:u}=t,m={xrs:l.update_ranges(c,h,r),yrs:l.update_ranges(u,d,p),factor:e};this.plot_view.push_state(\"wheel_pan\",{range:m}),this.plot_view.update_range(m,!1,!0),null!=this.model.document&&this.model.document.interactive_start(this.plot_model)}}s.WheelPanToolView=_,_.__name__=\"WheelPanToolView\";class h extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=a.bk_tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}static init_WheelPanTool(){this.prototype.default_view=_,this.define({dimension:[n.Dimension,\"width\"]}),this.internal({speed:[n.Number,.001]}),this.register_alias(\"xwheel_pan\",()=>new h({dimension:\"width\"})),this.register_alias(\"ywheel_pan\",()=>new h({dimension:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimension)}}s.WheelPanTool=h,h.__name__=\"WheelPanTool\",h.init_WheelPanTool()},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const s=e(1),i=e(306),l=e(354),n=s.__importStar(e(18)),_=e(32),h=e(309);class a extends i.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:l}=e;let n;n=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:n,ctrlKey:i,shiftKey:l})}_scroll(e){const{frame:o}=this.plot_view,t=o.bbox.h_range,s=o.bbox.v_range,{sx:i,sy:n}=e,_=this.model.dimensions,h=(\"width\"==_||\"both\"==_)&&t.startnew m({dimensions:\"both\"})),this.register_alias(\"xwheel_zoom\",()=>new m({dimensions:\"width\"})),this.register_alias(\"ywheel_zoom\",()=>new m({dimensions:\"height\"}))}get tooltip(){return this._get_dim_tooltip(this.tool_name,this.dimensions)}}t.WheelZoomTool=m,m.__name__=\"WheelZoomTool\",m.init_WheelZoomTool()},\n", - " function _(i,s,e){Object.defineProperty(e,\"__esModule\",{value:!0});const t=i(1),o=i(295),n=i(168),l=t.__importStar(i(18)),h=i(13),a=i(309);class r extends o.InspectToolView{_move(i){if(!this.model.active)return;const{sx:s,sy:e}=i;this.plot_view.frame.bbox.contains(s,e)?this._update_spans(s,e):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,s){const e=this.model.dimensions;\"width\"!=e&&\"both\"!=e||(this.model.spans.width.location=s),\"height\"!=e&&\"both\"!=e||(this.model.spans.height.location=i)}}e.CrosshairToolView=r,r.__name__=\"CrosshairToolView\";class _ extends o.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=a.bk_tool_icon_crosshair}static init_CrosshairTool(){this.prototype.default_view=r,this.define({dimensions:[l.Dimensions,\"both\"],line_color:[l.Color,\"black\"],line_width:[l.Number,1],line_alpha:[l.Number,1]}),this.internal({spans:[l.Any]}),this.register_alias(\"crosshair\",()=>new _)}get tooltip(){return this._get_dim_tooltip(\"Crosshair\",this.dimensions)}get synthetic_renderers(){return h.values(this.spans)}initialize(){super.initialize(),this.spans={width:new n.Span({for_hover:!0,dimension:\"width\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha}),height:new n.Span({for_hover:!0,dimension:\"height\",location_units:\"screen\",level:\"overlay\",line_color:this.line_color,line_width:this.line_width,line_alpha:this.line_alpha})}}}e.CrosshairTool=_,_.__name__=\"CrosshairTool\",_.init_CrosshairTool()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const r=e(1),o=e(81),i=r.__importStar(e(18)),a=e(13),n=e(29);class u extends o.Model{constructor(e){super(e)}static init_CustomJSHover(){this.define({args:[i.Any,{}],code:[i.String,\"\"]})}get values(){return a.values(this.args)}_make_code(e,t,s,r){return new Function(...a.keys(this.args),e,t,s,n.use_strict(r))}format(e,t,s){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,t,s)}}s.CustomJSHover=u,u.__name__=\"CustomJSHover\",u.init_CustomJSHover()},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const o=e(1),n=e(295),i=e(171),r=e(90),l=e(116),c=e(365),a=o.__importStar(e(101)),_=e(187),d=e(72),p=o.__importStar(e(18)),h=e(22),m=e(13),u=e(303),y=e(8),f=e(115),x=e(309),v=e(172);function w(e,t,s,o,n,i){const r={x:n[e],y:i[e]},l={x:n[e+1],y:i[e+1]};let c,_;if(\"span\"==t.type)\"h\"==t.direction?(c=Math.abs(r.x-s),_=Math.abs(l.x-s)):(c=Math.abs(r.y-o),_=Math.abs(l.y-o));else{const e={x:s,y:o};c=a.dist_2_pts(r,e),_=a.dist_2_pts(l,e)}return c<_?[[r.x,r.y],e]:[[l.x,l.y],e+1]}function g(e,t,s){return[[e[s],t[s]],s]}s._nearest_line_hit=w,s._line_hit=g;class b extends n.InspectToolView{initialize(){super.initialize(),this._ttmodels=null,this._ttviews=new Map;const{tooltips:e}=this.model;y.isArray(e)&&(this._template_el=this._create_template(e))}remove(){f.remove_views(this._ttviews),super.remove()}connect_signals(){super.connect_signals();for(const e of this.computed_renderers)e instanceof r.GlyphRenderer?this.connect(e.data_source.inspect,this._update):e instanceof l.GraphRenderer&&(this.connect(e.node_renderer.data_source.inspect,this._update),this.connect(e.edge_renderer.data_source.inspect,this._update));this.connect(this.model.properties.renderers.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.names.change,()=>this._computed_renderers=this._ttmodels=null),this.connect(this.model.properties.tooltips.change,()=>this._ttmodels=null)}_compute_ttmodels(){const e=new Map,t=this.model.tooltips;if(null!=t)for(const s of this.computed_renderers){const o=new i.Tooltip({custom:y.isString(t)||y.isFunction(t),attachment:this.model.attachment,show_arrow:this.model.show_arrow});s instanceof r.GlyphRenderer?e.set(s,o):s instanceof l.GraphRenderer&&(e.set(s.node_renderer,o),e.set(s.edge_renderer,o))}return(async()=>{const t=await f.build_views(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of t)e.render()})(),e}get computed_renderers(){if(null==this._computed_renderers){const e=this.model.renderers,t=this.plot_model.renderers,s=this.model.names;this._computed_renderers=c.compute_renderers(e,t,s)}return this._computed_renderers}get ttmodels(){return null==this._ttmodels&&(this._ttmodels=this._compute_ttmodels()),this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)?this._inspect(t,s):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let s;if(\"mouse\"==this.model.mode)s={type:\"point\",sx:e,sy:t};else{s={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){e.get_selection_manager().inspect(this.plot_view.renderer_views.get(e),s)}null!=this.model.callback&&this._emit_callback(s)}_update([e,{geometry:t}]){if(!this.model.active)return;if(!(e instanceof r.GlyphRendererView))return;const{model:s}=e;if(\"ignore\"==this.model.muted_policy&&s instanceof r.GlyphRenderer&&s.muted)return;const o=this.ttmodels.get(s);if(null==o)return;const n=s.get_selection_manager();let i=n.inspectors.get(s);if(s instanceof r.GlyphRenderer&&(i=s.view.convert_selection_to_subset(i)),i.is_empty())return void o.clear();const l=n.source,{sx:c,sy:a}=t,_=e.coordinates.x_scale,p=e.coordinates.y_scale,h=_.invert(c),u=p.invert(a),y=e.glyph,f=[];for(const s of i.line_indices){let o,n,r=y._x[s+1],d=y._y[s+1],m=s;switch(this.model.line_policy){case\"interp\":[r,d]=y.get_interpolation_hit(s,t),o=_.compute(r),n=p.compute(d);break;case\"prev\":[[o,n],m]=g(y.sx,y.sy,s);break;case\"next\":[[o,n],m]=g(y.sx,y.sy,s+1);break;case\"nearest\":[[o,n],m]=w(s,t,c,a,y.sx,y.sy),r=y._x[m],d=y._y[m];break;default:[o,n]=[c,a]}const x={index:m,x:h,y:u,sx:c,sy:a,data_x:r,data_y:d,rx:o,ry:n,indices:i.line_indices,name:e.model.name};f.push([o,n,this._render_tooltips(l,m,x)])}for(const t of i.image_indices){const s={index:t.index,x:h,y:u,sx:c,sy:a,name:e.model.name},o=this._render_tooltips(l,t,s);f.push([c,a,o])}for(const o of i.indices)if(m.isEmpty(i.multiline_indices)){const t=null!=y._x?y._x[o]:void 0,n=null!=y._y?y._y[o]:void 0;let _,d,p;if(\"snap_to_data\"==this.model.point_policy){let e=y.get_anchor_point(this.model.anchor,o,[c,a]);null==e&&(e=y.get_anchor_point(\"center\",o,[c,a])),_=e.x,d=e.y}else[_,d]=[c,a];p=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const m={index:p,x:h,y:u,sx:c,sy:a,data_x:t,data_y:n,indices:i.indices,name:e.model.name};f.push([_,d,this._render_tooltips(l,p,m)])}else for(const n of i.multiline_indices[o.toString()]){let d,m,x,v=y._xs[o][n],b=y._ys[o][n],k=n;switch(this.model.line_policy){case\"interp\":[v,b]=y.get_interpolation_hit(o,n,t),d=_.compute(v),m=p.compute(b);break;case\"prev\":[[d,m],k]=g(y.sxs[o],y.sys[o],n);break;case\"next\":[[d,m],k]=g(y.sxs[o],y.sys[o],n+1);break;case\"nearest\":[[d,m],k]=w(n,t,c,a,y.sxs[o],y.sys[o]),v=y._xs[o][k],b=y._ys[o][k];break;default:throw new Error(\"should't have happened\")}x=s instanceof r.GlyphRenderer?s.view.convert_indices_from_subset([o])[0]:o;const A={index:x,x:h,y:u,sx:c,sy:a,data_x:v,data_y:b,segment_index:k,indices:i.multiline_indices,name:e.model.name};f.push([d,m,this._render_tooltips(l,x,A)])}if(0==f.length)o.clear();else{const{content:e}=o;d.empty(o.content);for(const[,,t]of f)e.appendChild(t);const[t,s]=f[f.length-1];o.setv({position:[t,s]},{check_eq:!1})}}_emit_callback(e){for(const t of this.computed_renderers){const s=this.plot_view.renderer_views.get(t),o=s.coordinates.x_scale.invert(e.sx),n=s.coordinates.y_scale.invert(e.sy),i=t.data_source.inspected,r=Object.assign({x:o,y:n},e);this.model.callback.execute(this.model,{index:i,geometry:r,renderer:t})}}_create_template(e){const t=d.div({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[s]of e){const e=d.div({style:{display:\"table-row\"}});t.appendChild(e);const o=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_label},0!=s.length?s+\": \":\"\");e.appendChild(o);const n=d.span();n.dataset.value=\"\";const i=d.span({class:v.bk_tooltip_color_block},\" \");i.dataset.swatch=\"\",d.undisplay(i);const r=d.div({style:{display:\"table-cell\"},class:v.bk_tooltip_row_value},n,i);e.appendChild(r)}return t}_render_template(e,t,s,o,n){const i=e.cloneNode(!0),r=i.querySelectorAll(\"[data-value]\"),l=i.querySelectorAll(\"[data-swatch]\"),c=/\\$color(\\[.*\\])?:(\\w*)/;for(const[[,e],i]of u.enumerate(t)){const t=e.match(c);if(null!=t){const[,e=\"\",n]=t,c=s.get_column(n);if(null==c){r[i].textContent=n+\" unknown\";continue}const a=e.indexOf(\"hex\")>=0,_=e.indexOf(\"swatch\")>=0;let p=y.isNumber(o)?c[o]:null;if(null==p){r[i].textContent=\"(null)\";continue}a&&(p=h.color2hex(p)),r[i].textContent=p,_&&(l[i].style.backgroundColor=p,d.display(l[i]))}else{const t=_.replace_placeholders(e.replace(\"$~\",\"$data_\"),s,o,this.model.formatters,n);if(y.isString(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,s){const o=this.model.tooltips;if(y.isString(o)){const n=_.replace_placeholders({html:o},e,t,this.model.formatters,s);return d.div({},n)}return y.isFunction(o)?o(e,s):this._render_template(this._template_el,o,e,t,s)}}s.HoverToolView=b,b.__name__=\"HoverToolView\";class k extends n.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=x.bk_tool_icon_hover}static init_HoverTool(){this.prototype.default_view=b,this.define({tooltips:[p.Any,[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[p.Any,{}],renderers:[p.Any,\"auto\"],names:[p.Array,[]],mode:[p.HoverMode,\"mouse\"],muted_policy:[p.MutedPolicy,\"show\"],point_policy:[p.PointPolicy,\"snap_to_data\"],line_policy:[p.LinePolicy,\"nearest\"],show_arrow:[p.Boolean,!0],anchor:[p.Anchor,\"center\"],attachment:[p.TooltipAttachment,\"horizontal\"],callback:[p.Any]}),this.register_alias(\"hover\",()=>new k)}}s.HoverTool=k,k.__name__=\"HoverTool\",k.init_HoverTool()},\n", - " function _(t,o,e){Object.defineProperty(e,\"__esModule\",{value:!0});const i=t(1).__importStar(t(18)),n=t(15),s=t(81),l=t(295),c=t(303);class r extends s.Model{constructor(t){super(t)}static init_ToolProxy(){this.define({tools:[i.Array,[]],active:[i.Boolean,!1],disabled:[i.Boolean,!1]})}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof l.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new n.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,()=>this.doit()),this.connect(this.properties.active.change,()=>this.set_active());for(const t of this.tools)this.connect(t.properties.active.change,()=>{this.active=t.active})}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,i]of c.enumerate(t))if(null==e)o.push(null);else{const t=()=>{var t,o;for(const e of this.tools)null===(o=null===(t=e.menu)||void 0===t?void 0:t[i])||void 0===o||o.handler()};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=r,r.__name__=\"ToolProxy\",r.init_ToolProxy()},\n", - " function _(o,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=o(1).__importStar(o(18)),e=o(9),n=o(13),r=o(305),l=o(379),c=o(272),h=o(212);class a extends r.ToolbarBase{constructor(o){super(o)}static init_ProxyToolbar(){this.define({toolbars:[i.Array,[]]})}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},i=[],r=[];for(const o of this.help)e.includes(r,o.redirect)||(i.push(o),r.push(o.redirect));this._proxied_tools.push(...i),this.help=i;for(const[o,t]of n.entries(this.gestures)){o in s||(s[o]={});for(const i of t.tools)i.type in s[o]||(s[o][i.type]=[]),s[o][i.type].push(i)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const c=(o,t=!1)=>{const s=new l.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of n.keys(s)){const t=this.gestures[o];t.tools=[];for(const i of n.keys(s[o])){const e=s[o][i];if(e.length>0)if(\"multi\"==o)for(const o of e){const s=c([o]);t.tools.push(s),this.connect(s.properties.active.change,()=>this._active_change(s))}else{const o=c(e);t.tools.push(o),this.connect(o.properties.active.change,()=>this._active_change(o))}}}this.actions=[];for(const[o,s]of n.entries(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(c([o]));else s.length>0&&this.actions.push(c(s));this.inspectors=[];for(const t of n.values(o))t.length>0&&this.inspectors.push(c(t,!0));for(const[o,t]of n.entries(this.gestures))0!=t.tools.length&&(t.tools=e.sort_by(t.tools,o=>o.default_order),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=a,a.__name__=\"ProxyToolbar\",a.init_ProxyToolbar();class _ extends c.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new h.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}}s.ToolbarBoxView=_,_.__name__=\"ToolbarBoxView\";class p extends c.LayoutDOM{constructor(o){super(o)}static init_ToolbarBox(){this.prototype.default_view=_,this.define({toolbar:[i.Instance],toolbar_location:[i.Location,\"right\"]})}}s.ToolbarBox=p,p.__name__=\"ToolbarBox\",p.init_ToolbarBox()},\n", - " function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=e(5),i=e(78),d=e(115),c=e(72),l=e(382);t.index={},t.add_document_standalone=async function(e,n,s=[],a=!1){const u=new Map;async function r(o){let a;const r=e.roots().indexOf(o),f=s[r];null!=f?a=f:n.classList.contains(l.BOKEH_ROOT)?a=n:(a=c.div({class:l.BOKEH_ROOT}),n.appendChild(a));const v=await d.build_view(o,{parent:null});return v instanceof i.DOMView&&v.renderTo(a),u.set(o,v),t.index[o.id]=v,v}for(const n of e.roots())await r(n);return a&&(window.document.title=e.title()),e.on_change(e=>{e instanceof o.RootAddedEvent?r(e.model):e instanceof o.RootRemovedEvent?function(e){const n=u.get(e);null!=n&&(n.remove(),u.delete(e),delete t.index[e.id])}(e.model):a&&e instanceof o.TitleChangedEvent&&(window.document.title=e.title)}),[...u.values()]}},\n", - " function _(e,o,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(72),r=e(273);function l(e){let o=document.getElementById(e);if(null==o)throw new Error(`Error rendering Bokeh model: could not find #${e} HTML tag`);if(!document.body.contains(o))throw new Error(`Error rendering Bokeh model: element #${e} must be under `);if(\"SCRIPT\"==o.tagName){const e=t.div({class:n.BOKEH_ROOT});t.replaceWith(o,e),o=e}return o}n.BOKEH_ROOT=r.bk_root,n._resolve_element=function(e){const{elementid:o}=e;return null!=o?l(o):document.body},n._resolve_root_elements=function(e){const o=[];if(null!=e.root_ids&&null!=e.roots)for(const n of e.root_ids)o.push(l(e.roots[n]));return o}},\n", - " function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const e=n(384),s=n(19),c=n(381);t._get_ws_url=function(n,o){let t,e=\"ws:\";return\"https:\"==window.location.protocol&&(e=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),e+\"//\"+t.host+n+\"/ws\"};const r={};t.add_document_from_session=async function(n,o,t,a=[],i=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=e.parse_token(o).session_id;n in r||(r[n]={});const c=r[n];return s in c||(c[s]=e.pull_session(n,o,t)),c[s]}(n,o,l)}catch(n){const t=e.parse_token(o).session_id;throw s.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return c.add_document_standalone(d.document,t,a,i)}},\n", - " function _(e,s,n){Object.defineProperty(n,\"__esModule\",{value:!0});const t=e(19),o=e(5),r=e(385),i=e(386),c=e(387);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let l=0;function _(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=_;class h{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,o=null){this.url=e,this.token=s,this.args_string=o,this._number=l++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new i.Receiver,this.id=_(s).session_id.split(\".\")[0],t.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=\"\"+this.url;return null!=this.args_string&&this.args_string.length>0&&(e+=\"?\"+this.args_string),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)})}catch(e){throw t.logger.error(\"websocket creation failed to url: \"+this.url),t.logger.error(\" - \"+e),e}}close(){this.closed_permanently||(t.logger.debug(\"Permanently closing websocket connection \"+this._number),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,\"close method called on ClientConnection \"+this._number),this.session._connection_closed())}_schedule_reconnect(e){setTimeout(()=>{this.closed_permanently||t.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)},e)}send(e){if(null==this.socket)throw new Error(\"not connected so cannot send \"+e);e.send(this.socket)}async send_with_reply(e){const s=await new Promise((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)});if(\"ERROR\"===s.msgtype())throw new Error(\"Error reply \"+s.content.text);return s}async _pull_doc_json(){const e=r.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;t.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)t.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=o.Document.from_json(n),i=o.Document._compute_patch_since_json(n,s);if(i.events.length>0){t.logger.debug(`Sending ${i.events.length} changes from model construction back to server`);const e=r.Message.create(\"PATCH-DOC\",{},i);this.send(e)}this.session=new c.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],t.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),t.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),t.logger.error(\"Failed to repull session \"+e),s(e)}}_on_open(e,s){t.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&t.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(e.toString())}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){t.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach(e=>e.reject(\"Disconnected\")),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){t.logger.debug(\"Websocket error on socket \"+this._number);const s=\"Could not open websocket\";t.logger.error(\"Failed to connect to Bokeh server: \"+s),e(new Error(s))}_close_bad_protocol(e){t.logger.error(\"Closing connection: \"+e),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=h,h.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new h(e,s,n).connect()}},\n", - " function _(e,s,t){Object.defineProperty(t,\"__esModule\",{value:!0});const r=e(29);class n{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),i=JSON.parse(s),a=JSON.parse(t);return new n(r,i,a)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(\"too many buffers received, expecting \"+t);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=n.create_header(e);return new n(r,s,t)}static create_header(e){return{msgid:r.uniqueId(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=n,n.__name__=\"Message\"},\n", - " function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const _=e(385),r=e(8);class i{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,r]=this._fragments.slice(0,3);this._partial=_.Message.assemble(t,s,r),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!r.isString(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=i,i.__name__=\"Receiver\"},\n", - " function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=e(5),s=e(385),c=e(19);class i{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):c.logger.debug(\"Doing nothing with message \"+e.msgtype())}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=s.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof o.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),c=s.Message.create(\"PATCH-DOC\",{},n);this._connection.send(c)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){c.logger.trace(\"Unhandled OK reply to \"+e.reqid())}_handle_error(e){c.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=i,i.__name__=\"ClientSession\"},\n", - " function _(e,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1);var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var o,t=e[Symbol.asyncIterator];return t?t.call(e):(e=\"function\"==typeof __values?__values(e):e[Symbol.iterator](),o={},n(\"next\"),n(\"throw\"),n(\"return\"),o[Symbol.asyncIterator]=function(){return this},o);function n(t){o[t]=e[t]&&function(o){return new Promise((function(n,r){(function(e,o,t,n){Promise.resolve(n).then((function(o){e({value:o,done:t})}),o)})(n,r,(o=e[t](o)).done,o.value)}))}}};const s=e(5),i=e(386),l=e(19),a=e(72),c=e(13),u=e(381),f=e(382),g=n.__importDefault(e(73)),m=n.__importDefault(e(311)),d=n.__importDefault(e(389));function p(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function _(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){l.logger.info(\"Registering Jupyter comms for target \"+e);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,t=>{l.logger.info(\"Registering Jupyter comms for target \"+e);const n=new i.Receiver;t.on_msg(p.bind(o,n))})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,t=>{l.logger.info(\"Registering JupyterLab comms for target \"+e);const n=new i.Receiver;t.onMsg=p.bind(o,n)})}catch(e){l.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){l.logger.info(\"Registering Google Colab comms for target \"+e);const t=google.colab.kernel.comms;try{t.registerTarget(e,async t=>{var n,s,a;l.logger.info(\"Registering Google Colab comms for target \"+e);const c=new i.Receiver;try{for(var u,f=r(t.messages);!(u=await f.next()).done;){const e=u.value,t={data:e.data},n=[];for(const o of null!==(a=e.buffers)&&void 0!==a?a:[])n.push(new DataView(o));const r={content:t,buffers:n};p.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(s=f.return)&&await s.call(f)}finally{if(n)throw n.error}}})}catch(e){l.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}a.stylesheet.append(g.default),a.stylesheet.append(m.default),a.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=c.size(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=s.Document.from_json(c.values(e)[0]);for(const e of o){null!=e.notebook_comms_target&&_(e.notebook_comms_target,t);const o=f._resolve_element(e),n=f._resolve_root_elements(e);u.add_document_standalone(t,o,n)}}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});o.default=\"\\n/* notebook specific tweaks so no black outline and matching padding\\n/* can't be wrapped inside bk-root. here are the offending jupyter lines:\\n/* https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/less/renderedhtml.less#L59-L76 */\\n.rendered_html .bk-root .bk-tooltip table,\\n.rendered_html .bk-root .bk-tooltip tr,\\n.rendered_html .bk-root .bk-tooltip th,\\n.rendered_html .bk-root .bk-tooltip td {\\n border: none;\\n padding: 1px;\\n}\\n\"},\n", - " function _(e,t,_){Object.defineProperty(_,\"__esModule\",{value:!0});const o=e(1);o.__exportStar(e(385),_),o.__exportStar(e(386),_)},\n", - " function _(e,t,n){function s(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}Object.defineProperty(n,\"__esModule\",{value:!0}),n.results={},n.init=function(){s()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,s()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,s()}},\n", - " function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0}),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",()=>r.removeChild(t));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\";const s=e instanceof Error?e.message:e;l.appendChild(document.createTextNode(s)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const r=document.getElementsByTagName(\"body\")[0];r.insertBefore(t,r.firstChild)}(e),t)return;throw e}}},\n", - " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/callback\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/eq\":25,\"core/util/data_structures\":26,\"core/settings\":27,\"core/property_mixins\":28,\"core/util/string\":29,\"core/util/ndarray\":30,\"core/util/serialization\":31,\"core/util/compat\":32,\"core/util/pretty\":33,\"models/index\":34,\"models/annotations/index\":35,\"models/annotations/annotation\":36,\"core/util/projections\":37,\"models/renderers/renderer\":70,\"core/view\":71,\"core/dom\":72,\"styles/root.css\":73,\"core/visuals\":74,\"core/util/svg\":75,\"core/util/affine\":76,\"models/canvas/canvas\":77,\"core/dom_view\":78,\"core/util/bbox\":79,\"core/util/canvas\":80,\"model\":81,\"models/canvas/coordinates\":82,\"models/annotations/arrow\":83,\"models/annotations/arrow_head\":84,\"models/sources/column_data_source\":85,\"models/sources/columnar_data_source\":86,\"models/sources/data_source\":87,\"models/selections/selection\":88,\"core/selection_manager\":89,\"models/renderers/glyph_renderer\":90,\"models/renderers/data_renderer\":91,\"models/glyphs/line\":92,\"models/glyphs/xy_glyph\":93,\"models/glyphs/glyph\":94,\"core/util/spatial\":95,\"models/ranges/factor_range\":98,\"models/ranges/range\":99,\"models/glyphs/utils\":100,\"core/hittest\":101,\"models/glyphs/webgl/line\":102,\"models/glyphs/webgl/utils/index\":103,\"models/glyphs/webgl/utils/program\":104,\"models/glyphs/webgl/utils/buffer\":105,\"models/glyphs/webgl/utils/texture\":106,\"models/glyphs/webgl/base\":107,\"models/glyphs/webgl/line.vert\":108,\"models/glyphs/webgl/line.frag\":109,\"models/glyphs/patch\":110,\"models/glyphs/harea\":111,\"models/glyphs/area\":112,\"models/glyphs/varea\":113,\"models/sources/cds_view\":114,\"core/build_views\":115,\"models/renderers/graph_renderer\":116,\"models/graphs/graph_hit_test_policy\":117,\"models/selections/interaction_policy\":118,\"core/util/typed_array\":119,\"core/util/set\":120,\"document/events\":121,\"models/annotations/band\":122,\"models/annotations/upper_lower\":123,\"models/annotations/box_annotation\":124,\"models/annotations/color_bar\":125,\"models/tickers/basic_ticker\":126,\"models/tickers/adaptive_ticker\":127,\"models/tickers/continuous_ticker\":128,\"models/tickers/ticker\":129,\"models/formatters/basic_tick_formatter\":130,\"models/formatters/tick_formatter\":131,\"models/mappers/index\":132,\"models/mappers/categorical_color_mapper\":133,\"models/mappers/categorical_mapper\":134,\"models/mappers/color_mapper\":135,\"models/mappers/mapper\":136,\"models/transforms/transform\":137,\"models/mappers/categorical_marker_mapper\":138,\"models/mappers/categorical_pattern_mapper\":139,\"models/mappers/continuous_color_mapper\":140,\"models/mappers/linear_color_mapper\":141,\"models/mappers/log_color_mapper\":142,\"models/mappers/scanning_color_mapper\":143,\"models/mappers/eqhist_color_mapper\":144,\"models/scales/linear_scale\":145,\"models/scales/continuous_scale\":146,\"models/scales/scale\":147,\"models/transforms/index\":148,\"models/transforms/customjs_transform\":149,\"models/transforms/dodge\":150,\"models/transforms/range_transform\":151,\"models/transforms/interpolator\":152,\"models/transforms/jitter\":153,\"models/transforms/linear_interpolator\":154,\"models/transforms/step_interpolator\":155,\"models/scales/linear_interpolation_scale\":156,\"models/scales/log_scale\":157,\"models/ranges/range1d\":158,\"core/util/text\":159,\"models/annotations/label\":160,\"models/annotations/text_annotation\":161,\"models/annotations/label_set\":162,\"models/annotations/legend\":163,\"models/annotations/legend_item\":164,\"core/vectorization\":165,\"models/annotations/poly_annotation\":166,\"models/annotations/slope\":167,\"models/annotations/span\":168,\"models/annotations/title\":169,\"models/annotations/toolbar_panel\":170,\"models/annotations/tooltip\":171,\"styles/tooltips\":172,\"styles/mixins\":173,\"styles/tooltips.css\":174,\"models/annotations/whisker\":175,\"models/axes/index\":176,\"models/axes/axis\":177,\"models/renderers/guide_renderer\":178,\"models/axes/categorical_axis\":179,\"models/tickers/categorical_ticker\":180,\"models/formatters/categorical_tick_formatter\":181,\"models/axes/continuous_axis\":182,\"models/axes/datetime_axis\":183,\"models/axes/linear_axis\":184,\"models/formatters/datetime_tick_formatter\":185,\"core/util/templating\":187,\"models/tickers/datetime_ticker\":190,\"models/tickers/composite_ticker\":191,\"models/tickers/days_ticker\":192,\"models/tickers/single_interval_ticker\":193,\"models/tickers/util\":194,\"models/tickers/months_ticker\":195,\"models/tickers/years_ticker\":196,\"models/axes/log_axis\":197,\"models/formatters/log_tick_formatter\":198,\"models/tickers/log_ticker\":199,\"models/axes/mercator_axis\":200,\"models/formatters/mercator_tick_formatter\":201,\"models/tickers/mercator_ticker\":202,\"models/callbacks/index\":203,\"models/callbacks/customjs\":204,\"models/callbacks/callback\":205,\"models/callbacks/open_url\":206,\"models/canvas/index\":207,\"models/canvas/cartesian_frame\":208,\"models/scales/categorical_scale\":209,\"models/ranges/data_range1d\":210,\"models/ranges/data_range\":211,\"core/layout/index\":212,\"core/layout/types\":213,\"core/layout/layoutable\":214,\"core/layout/alignments\":215,\"core/layout/grid\":216,\"core/layout/html\":217,\"models/expressions/index\":218,\"models/expressions/expression\":219,\"models/expressions/stack\":220,\"models/expressions/cumsum\":221,\"models/filters/index\":222,\"models/filters/boolean_filter\":223,\"models/filters/filter\":224,\"models/filters/customjs_filter\":225,\"models/filters/group_filter\":226,\"models/filters/index_filter\":227,\"models/formatters/index\":228,\"models/formatters/func_tick_formatter\":229,\"models/formatters/numeral_tick_formatter\":230,\"models/formatters/printf_tick_formatter\":231,\"models/glyphs/index\":232,\"models/glyphs/annular_wedge\":233,\"models/glyphs/annulus\":234,\"models/glyphs/arc\":235,\"models/glyphs/bezier\":236,\"models/glyphs/circle\":237,\"models/glyphs/webgl/markers\":238,\"models/glyphs/webgl/markers.vert\":239,\"models/glyphs/webgl/markers.frag\":240,\"models/glyphs/center_rotatable\":241,\"models/glyphs/ellipse\":242,\"models/glyphs/ellipse_oval\":243,\"models/glyphs/hbar\":244,\"models/glyphs/box\":245,\"models/glyphs/hex_tile\":246,\"models/glyphs/image\":247,\"models/glyphs/image_base\":248,\"models/glyphs/image_rgba\":249,\"models/glyphs/image_url\":250,\"core/util/image\":251,\"models/glyphs/multi_line\":252,\"models/glyphs/multi_polygons\":253,\"models/glyphs/oval\":254,\"models/glyphs/patches\":255,\"models/glyphs/quad\":256,\"models/glyphs/quadratic\":257,\"models/glyphs/ray\":258,\"models/glyphs/rect\":259,\"models/glyphs/segment\":260,\"models/glyphs/step\":261,\"models/glyphs/text\":262,\"models/glyphs/vbar\":263,\"models/glyphs/wedge\":264,\"models/graphs/index\":265,\"models/graphs/layout_provider\":266,\"models/graphs/static_layout_provider\":267,\"models/grids/index\":268,\"models/grids/grid\":269,\"models/layouts/index\":270,\"models/layouts/box\":271,\"models/layouts/layout_dom\":272,\"styles/root\":273,\"models/layouts/column\":274,\"models/layouts/grid_box\":275,\"models/layouts/html_box\":276,\"models/layouts/row\":277,\"models/layouts/spacer\":278,\"models/layouts/tabs\":279,\"styles/tabs\":280,\"styles/buttons\":281,\"styles/menus\":282,\"styles/buttons.css\":283,\"styles/menus.css\":284,\"styles/tabs.css\":285,\"models/layouts/widget_box\":286,\"models/markers/index\":287,\"models/markers/defs\":288,\"models/markers/marker\":289,\"models/markers/scatter\":290,\"models/plots/index\":291,\"models/plots/gmap_plot\":292,\"models/plots/plot\":293,\"models/tools/toolbar\":294,\"models/tools/inspectors/inspect_tool\":295,\"models/tools/button_tool\":296,\"models/tools/tool\":298,\"styles/toolbar\":299,\"styles/toolbar.css\":300,\"styles/icons.css\":301,\"core/util/menus\":302,\"core/util/iterator\":303,\"models/tools/on_off_button\":304,\"models/tools/toolbar_base\":305,\"models/tools/gestures/gesture_tool\":306,\"models/tools/actions/action_tool\":307,\"models/tools/actions/help_tool\":308,\"styles/icons\":309,\"styles/logo\":310,\"styles/logo.css\":311,\"models/plots/plot_canvas\":312,\"core/bokeh_events\":313,\"core/ui_events\":314,\"core/util/wheel\":315,\"core/util/throttle\":316,\"core/layout/border\":317,\"core/layout/side_panel\":318,\"models/plots/gmap_plot_canvas\":319,\"models/ranges/index\":320,\"models/renderers/index\":321,\"models/scales/index\":322,\"models/selections/index\":323,\"models/sources/index\":324,\"models/sources/server_sent_data_source\":325,\"models/sources/web_data_source\":326,\"models/sources/ajax_data_source\":327,\"models/sources/geojson_data_source\":328,\"models/tickers/index\":329,\"models/tickers/fixed_ticker\":330,\"models/tiles/index\":331,\"models/tiles/bbox_tile_source\":332,\"models/tiles/mercator_tile_source\":333,\"models/tiles/tile_source\":334,\"models/tiles/tile_utils\":335,\"models/tiles/quadkey_tile_source\":336,\"models/tiles/tile_renderer\":337,\"models/tiles/wmts_tile_source\":338,\"styles/tiles\":339,\"styles/tiles.css\":340,\"models/tiles/tms_tile_source\":341,\"models/textures/index\":342,\"models/textures/canvas_texture\":343,\"models/textures/texture\":344,\"models/textures/image_url_texture\":345,\"models/tools/index\":346,\"models/tools/actions/custom_action\":347,\"models/tools/actions/redo_tool\":348,\"models/tools/actions/reset_tool\":349,\"models/tools/actions/save_tool\":350,\"models/tools/actions/undo_tool\":351,\"models/tools/actions/zoom_in_tool\":352,\"models/tools/actions/zoom_base_tool\":353,\"core/util/zoom\":354,\"models/tools/actions/zoom_out_tool\":355,\"models/tools/edit/edit_tool\":356,\"models/tools/edit/box_edit_tool\":357,\"models/tools/edit/freehand_draw_tool\":358,\"models/tools/edit/point_draw_tool\":359,\"models/tools/edit/poly_draw_tool\":360,\"models/tools/edit/poly_tool\":361,\"models/tools/edit/poly_edit_tool\":362,\"models/tools/gestures/box_select_tool\":363,\"models/tools/gestures/select_tool\":364,\"models/tools/util\":365,\"models/tools/gestures/box_zoom_tool\":366,\"models/tools/gestures/lasso_select_tool\":367,\"models/tools/gestures/poly_select_tool\":368,\"models/tools/edit/line_edit_tool\":369,\"models/tools/edit/line_tool\":370,\"models/tools/gestures/pan_tool\":371,\"models/tools/gestures/range_tool\":372,\"models/tools/gestures/tap_tool\":373,\"models/tools/gestures/wheel_pan_tool\":374,\"models/tools/gestures/wheel_zoom_tool\":375,\"models/tools/inspectors/crosshair_tool\":376,\"models/tools/inspectors/customjs_hover\":377,\"models/tools/inspectors/hover_tool\":378,\"models/tools/tool_proxy\":379,\"models/tools/toolbar_box\":380,\"embed/standalone\":381,\"embed/dom\":382,\"embed/server\":383,\"client/connection\":384,\"protocol/message\":385,\"protocol/receiver\":386,\"client/session\":387,\"embed/notebook\":388,\"styles/notebook.css\":389,\"protocol/index\":390,\"testing\":391,\"safely\":392}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-widgets.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 402: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(403));o.Widgets=r;e(7).register_models(r)},\n", - " 403: function _(r,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});var a=r(404);t.AbstractButton=a.AbstractButton;var o=r(407);t.AbstractIcon=o.AbstractIcon;var u=r(408);t.AutocompleteInput=u.AutocompleteInput;var n=r(413);t.Button=n.Button;var i=r(414);t.CheckboxButtonGroup=i.CheckboxButtonGroup;var v=r(416);t.CheckboxGroup=v.CheckboxGroup;var p=r(418);t.ColorPicker=p.ColorPicker;var c=r(419);t.DatePicker=c.DatePicker;var l=r(422);t.DateRangeSlider=l.DateRangeSlider;var d=r(428);t.DateSlider=d.DateSlider;var I=r(429);t.Div=I.Div;var g=r(433);t.Dropdown=g.Dropdown;var S=r(434);t.FileInput=S.FileInput;var P=r(410);t.InputWidget=P.InputWidget;var k=r(430);t.Markup=k.Markup;var x=r(435);t.MultiSelect=x.MultiSelect;var D=r(436);t.Paragraph=D.Paragraph;var b=r(437);t.PasswordInput=b.PasswordInput;var s=r(438);t.MultiChoice=s.MultiChoice;var h=r(441);t.NumericInput=h.NumericInput;var A=r(444);t.PreText=A.PreText;var B=r(445);t.RadioButtonGroup=B.RadioButtonGroup;var C=r(446);t.RadioGroup=C.RadioGroup;var G=r(447);t.RangeSlider=G.RangeSlider;var R=r(448);t.Select=R.Select;var T=r(449);t.Slider=T.Slider;var M=r(450);t.Spinner=M.Spinner;var m=r(409);t.TextInput=m.TextInput;var w=r(451);t.TextAreaInput=w.TextAreaInput;var W=r(452);t.Toggle=W.Toggle;var _=r(472);t.Widget=_.Widget},\n", - " 404: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=t(1),s=i.__importStar(t(18)),o=t(72),l=t(115),r=t(405),_=t(281),c=i.__importDefault(t(283));class u extends r.ControlView{*controls(){yield this.button_el}async lazy_initialize(){await super.lazy_initialize();const{icon:t}=this.model;null!=t&&(this.icon_view=await l.build_view(t,{parent:this}))}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),c.default]}_render_button(...t){return o.button({type:\"button\",disabled:this.model.disabled,class:[_.bk_btn,_.bk_btn_type(this.model.button_type)]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",()=>this.click()),null!=this.icon_view&&(o.prepend(this.button_el,this.icon_view.el,o.nbsp()),this.icon_view.render()),this.group_el=o.div({class:_.bk_btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=u,u.__name__=\"AbstractButtonView\";class a extends r.Control{constructor(t){super(t)}static init_AbstractButton(){this.define({label:[s.String,\"Button\"],icon:[s.Instance],button_type:[s.ButtonType,\"default\"]})}}n.AbstractButton=a,a.__name__=\"AbstractButton\",a.init_AbstractButton()},\n", - " 405: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const s=e(472),n=e(72);class i extends s.WidgetView{connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.controls())n.toggle_attribute(e,\"disabled\",this.model.disabled)})}}o.ControlView=i,i.__name__=\"ControlView\";class l extends s.Widget{constructor(e){super(e)}}o.Control=l,l.__name__=\"Control\"},\n", - " 472: function _(i,e,t){Object.defineProperty(t,\"__esModule\",{value:!0});const o=i(1),n=i(276),r=o.__importStar(i(18));class _ extends n.HTMLBoxView{_width_policy(){return\"horizontal\"==this.model.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.model.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.model.orientation?null==i.width&&(i.width=this.model.default_size):null==i.height&&(i.height=this.model.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class s extends n.HTMLBox{constructor(i){super(i)}static init_Widget(){this.define({orientation:[r.Orientation,\"horizontal\"],default_size:[r.Number,300]}),this.override({margin:[5,5,5,5]})}}t.Widget=s,s.__name__=\"Widget\",s.init_Widget()},\n", - " 407: function _(e,t,c){Object.defineProperty(c,\"__esModule\",{value:!0});const s=e(81),n=e(78);class o extends n.DOMView{}c.AbstractIconView=o,o.__name__=\"AbstractIconView\";class _ extends s.Model{constructor(e){super(e)}}c.AbstractIcon=_,_.__name__=\"AbstractIcon\"},\n", - " 408: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const i=e(1),s=e(409),h=e(72),_=i.__importStar(e(18)),o=e(10),u=e(173),r=e(282),c=i.__importDefault(e(284));class l extends s.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",e=>this._keydown(e)),this.input_el.addEventListener(\"keyup\",e=>this._keyup(e)),this.menu=h.div({class:[r.bk_menu,u.bk_below]}),this.menu.addEventListener(\"click\",e=>this._menu_click(e)),this.menu.addEventListener(\"mouseover\",e=>this._menu_hover(e)),this.el.appendChild(this.menu),h.undisplay(this.menu)}change_input(){this._open&&this.menu.children.length>0&&(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu())}_update_completions(e){h.empty(this.menu);for(const t of e){const e=h.div({},t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(u.bk_active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,h.display(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,h.undisplay(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(u.bk_active),this._hover_index=o.clamp(e,0,t-1),this.menu.children[this._hover_index].classList.add(u.bk_active))}_keydown(e){}_keyup(e){switch(e.keyCode){case h.Keys.Enter:this.change_input();break;case h.Keys.Esc:this._hide_menu();break;case h.Keys.Up:this._bump_hover(this._hover_index-1);break;case h.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)i(n).startsWith(i(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class a extends s.TextInput{constructor(e){super(e)}static init_AutocompleteInput(){this.prototype.default_view=l,this.define({completions:[_.Array,[]],min_characters:[_.Int,2],case_sensitive:[_.Boolean,!0]})}}n.AutocompleteInput=a,a.__name__=\"AutocompleteInput\",a.init_AutocompleteInput()},\n", - " 409: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(410),l=e(72),p=n.__importStar(e(18)),u=e(412);class a extends s.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.value_input.change,()=>this.input_el.value=this.model.value_input),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}render(){super.render(),this.input_el=l.input({type:\"text\",class:u.bk_input,name:this.model.name,value:this.model.value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"input\",()=>this.change_input_oninput()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_oninput(){this.model.value_input=this.input_el.value,super.change_input()}}i.TextInputView=a,a.__name__=\"TextInputView\";class h extends s.InputWidget{constructor(e){super(e)}static init_TextInput(){this.prototype.default_view=a,this.define({value:[p.String,\"\"],value_input:[p.String,\"\"],placeholder:[p.String,\"\"]})}}i.TextInput=h,h.__name__=\"TextInput\",h.init_TextInput()},\n", - " 410: function _(t,e,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=t(1),l=t(405),s=t(72),_=n.__importStar(t(18)),o=n.__importDefault(t(411)),r=t(412);class p extends l.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,()=>{this.label_el.textContent=this.model.title})}styles(){return[...super.styles(),o.default]}render(){super.render();const{title:t}=this.model;this.label_el=s.label({style:{display:0==t.length?\"none\":\"\"}},t),this.group_el=s.div({class:r.bk_input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}i.InputWidgetView=p,p.__name__=\"InputWidgetView\";class u extends l.Control{constructor(t){super(t)}static init_InputWidget(){this.define({title:[_.String,\"\"]})}}i.InputWidget=u,u.__name__=\"InputWidget\",u.init_InputWidget()},\n", - " 411: function _(n,o,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-input {\\n display: inline-block;\\n width: 100%;\\n flex-grow: 1;\\n -webkit-flex-grow: 1;\\n min-height: 31px;\\n padding: 0 12px;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n}\\n.bk-root .bk-input:focus {\\n border-color: #66afe9;\\n outline: 0;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\\n}\\n.bk-root .bk-input::placeholder,\\n.bk-root .bk-input:-ms-input-placeholder,\\n.bk-root .bk-input::-moz-placeholder,\\n.bk-root .bk-input::-webkit-input-placeholder {\\n color: #999;\\n opacity: 1;\\n}\\n.bk-root .bk-input[disabled] {\\n cursor: not-allowed;\\n background-color: #eee;\\n opacity: 1;\\n}\\n.bk-root select:not([multiple]).bk-input,\\n.bk-root select:not([size]).bk-input {\\n height: auto;\\n appearance: none;\\n -webkit-appearance: none;\\n background-image: url(\\'data:image/svg+xml;utf8,\\');\\n background-position: right 0.5em center;\\n background-size: 8px 6px;\\n background-repeat: no-repeat;\\n}\\n.bk-root select[multiple].bk-input,\\n.bk-root select[size].bk-input,\\n.bk-root textarea.bk-input {\\n height: auto;\\n}\\n.bk-root .bk-input-group {\\n width: 100%;\\n height: 100%;\\n display: inline-flex;\\n display: -webkit-inline-flex;\\n flex-wrap: nowrap;\\n -webkit-flex-wrap: nowrap;\\n align-items: start;\\n -webkit-align-items: start;\\n flex-direction: column;\\n -webkit-flex-direction: column;\\n white-space: nowrap;\\n}\\n.bk-root .bk-input-group.bk-inline {\\n flex-direction: row;\\n -webkit-flex-direction: row;\\n}\\n.bk-root .bk-input-group.bk-inline > *:not(:first-child) {\\n margin-left: 5px;\\n}\\n.bk-root .bk-input-group input[type=\"checkbox\"] + span,\\n.bk-root .bk-input-group input[type=\"radio\"] + span {\\n position: relative;\\n top: -2px;\\n margin-left: 3px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper {\\n display: inherit;\\n width: inherit;\\n height: inherit;\\n position: relative;\\n overflow: hidden;\\n padding: 0;\\n vertical-align: middle;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper input {\\n padding-right: 20px;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn {\\n position: absolute;\\n display: block;\\n height: 50%;\\n min-height: 0;\\n min-width: 0;\\n width: 30px;\\n padding: 0;\\n margin: 0;\\n right: 0;\\n border: none;\\n background: none;\\n cursor: pointer;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before {\\n content: \"\";\\n display: inline-block;\\n transform: translateY(-50%);\\n border-left: 5px solid transparent;\\n border-right: 5px solid transparent;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up {\\n top: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before {\\n border-bottom: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before {\\n border-bottom-color: grey;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down {\\n bottom: 0;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before {\\n border-top: 5px solid black;\\n}\\n.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before {\\n border-top-color: grey;\\n}\\n'},\n", - " 412: function _(u,e,n){Object.defineProperty(n,\"__esModule\",{value:!0}),n.bk_input=\"bk-input\",n.bk_input_group=\"bk-input-group\"},\n", - " 413: function _(t,e,n){Object.defineProperty(n,\"__esModule\",{value:!0});const o=t(404),i=t(313);class s extends o.AbstractButtonView{click(){this.model.trigger_event(new i.ButtonClick),super.click()}}n.ButtonView=s,s.__name__=\"ButtonView\";class u extends o.AbstractButton{constructor(t){super(t)}static init_Button(){this.prototype.default_view=s,this.override({label:\"Button\"})}}n.Button=u,u.__name__=\"Button\",u.init_Button()},\n", - " 414: function _(t,e,o){Object.defineProperty(o,\"__esModule\",{value:!0});const i=t(1),c=t(415),s=t(72),n=i.__importStar(t(18)),a=t(173);class u extends c.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach((e,o)=>{s.classes(e).toggle(a.bk_active,t.has(o))})}}o.CheckboxButtonGroupView=u,u.__name__=\"CheckboxButtonGroupView\";class r extends c.ButtonGroup{constructor(t){super(t)}static init_CheckboxButtonGroup(){this.prototype.default_view=u,this.define({active:[n.Array,[]]})}}o.CheckboxButtonGroup=r,r.__name__=\"CheckboxButtonGroup\",r.init_CheckboxButtonGroup()},\n", - " 415: function _(t,e,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=t(1),o=t(405),i=t(72),r=n.__importStar(t(18)),_=t(281),u=n.__importDefault(t(283));class a extends o.ControlView{*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,()=>this.render()),this.on_change(t.labels,()=>this.render()),this.on_change(t.active,()=>this._update_active())}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map((t,e)=>{const s=i.div({class:[_.bk_btn,_.bk_btn_type(this.model.button_type)],disabled:this.model.disabled},t);return s.addEventListener(\"click\",()=>this.change_active(e)),s}),this._update_active();const t=i.div({class:_.bk_btn_group},this._buttons);this.el.appendChild(t)}}s.ButtonGroupView=a,a.__name__=\"ButtonGroupView\";class l extends o.Control{constructor(t){super(t)}static init_ButtonGroup(){this.define({labels:[r.Array,[]],button_type:[r.ButtonType,\"default\"]})}}s.ButtonGroup=l,l.__name__=\"ButtonGroup\",l.init_ButtonGroup()},\n", - " 416: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(417),o=e(72),c=e(9),a=n.__importStar(e(18)),l=e(173),d=e(412);class r extends s.InputGroupView{render(){super.render();const e=o.div({class:[d.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const{active:t,labels:i}=this.model;this._inputs=[];for(let n=0;nthis.change_active(n)),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),c.includes(t,n)&&(s.checked=!0);const a=o.label({},s,o.span({},i[n]));e.appendChild(a)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}i.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class p extends s.InputGroup{constructor(e){super(e)}static init_CheckboxGroup(){this.prototype.default_view=r,this.define({active:[a.Array,[]],labels:[a.Array,[]],inline:[a.Boolean,!1]})}}i.CheckboxGroup=p,p.__name__=\"CheckboxGroup\",p.init_CheckboxGroup()},\n", - " 417: function _(e,t,n){Object.defineProperty(n,\"__esModule\",{value:!0});const s=e(1),o=e(405),r=s.__importDefault(e(411));class u extends o.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render())}styles(){return[...super.styles(),r.default]}}n.InputGroupView=u,u.__name__=\"InputGroupView\";class _ extends o.Control{constructor(e){super(e)}}n.InputGroup=_,_.__name__=\"InputGroup\"},\n", - " 418: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),o=e(410),s=e(72),l=n.__importStar(e(18)),r=e(412);class c extends o.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.color.change,()=>this.input_el.value=this.model.color),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled)}render(){super.render(),this.input_el=s.input({type:\"color\",class:r.bk_input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}t.ColorPickerView=c,c.__name__=\"ColorPickerView\";class d extends o.InputWidget{constructor(e){super(e)}static init_ColorPicker(){this.prototype.default_view=c,this.define({color:[l.Color,\"#000000\"]})}}t.ColorPicker=d,d.__name__=\"ColorPicker\",d.init_ColorPicker()},\n", - " 419: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=n.__importDefault(e(420)),a=e(410),l=e(72),o=n.__importStar(e(18)),r=e(8),d=e(412),c=n.__importDefault(e(421));function u(e){const t=[];for(const i of e)if(r.isString(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class _ extends a.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,()=>{var t;return null===(t=this._picker)||void 0===t?void 0:t.setDate(e.value())}),this.connect(t.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",t.value())}),this.connect(i.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",i.value())}),this.connect(n.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",n.value())}),this.connect(s.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",s.value())}),this.connect(a.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",a.value())}),this.connect(l.change,()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",l.value())})}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),c.default]}render(){null==this._picker&&(super.render(),this.input_el=l.input({type:\"text\",class:d.bk_input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=s.default(this.input_el,{defaultDate:this.model.value,minDate:this.model.min_date,maxDate:this.model.max_date,inline:this.model.inline,position:this.model.position,disable:u(this.model.disabled_dates),enable:u(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=_,_.__name__=\"DatePickerView\";class h extends a.InputWidget{constructor(e){super(e)}static init_DatePicker(){this.prototype.default_view=_,this.define({value:[o.Any],min_date:[o.Any],max_date:[o.Any],disabled_dates:[o.Any,[]],enabled_dates:[o.Any,[]],position:[o.CalendarPosition,\"auto\"],inline:[o.Boolean,!1]})}}i.DatePicker=h,h.__name__=\"DatePicker\",h.init_DatePicker()},\n", - " 420: function _(e,t,n){\n", - " /* flatpickr v4.6.3, @license MIT */var a,i;a=this,i=function(){\"use strict\";\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation. All rights reserved.\n", - " Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use\n", - " this file except in compliance with the License. You may obtain a copy of the\n", - " License at http://www.apache.org/licenses/LICENSE-2.0\n", - " \n", - " THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n", - " KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\n", - " WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\n", - " MERCHANTABLITY OR NON-INFRINGEMENT.\n", - " \n", - " See the Apache Version 2.0 License for specific language governing permissions\n", - " and limitations under the License.\n", - " ***************************************************************************** */var e=function(){return(e=Object.assign||function(e){for(var t,n=1,a=arguments.length;n\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},a={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var t=e%100;if(t>3&&t<21)return\"th\";switch(t%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},i=function(e){return(\"0\"+e).slice(-2)},o=function(e){return!0===e?1:0};function r(e,t,n){var a;return void 0===n&&(n=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,n||e.apply(i,o)}),t),n&&!a&&e.apply(i,o)}}var l=function(e){return e instanceof Array?e:[e]};function c(e,t,n){if(!0===n)return e.classList.add(t);e.classList.remove(t)}function d(e,t,n){var a=window.document.createElement(e);return t=t||\"\",n=n||\"\",a.className=t,void 0!==n&&(a.textContent=n),a}function s(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function u(e,t){var n=d(\"div\",\"numInputWrapper\"),a=d(\"input\",\"numInput \"+e),i=d(\"span\",\"arrowUp\"),o=d(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==t)for(var r in t)a.setAttribute(r,t[r]);return n.appendChild(a),n.appendChild(i),n.appendChild(o),n}var f=function(){},m=function(e,t,n){return n.months[t?\"shorthand\":\"longhand\"][e]},g={D:f,F:function(e,t,n){e.setMonth(n.months.longhand.indexOf(t))},G:function(e,t){e.setHours(parseFloat(t))},H:function(e,t){e.setHours(parseFloat(t))},J:function(e,t){e.setDate(parseFloat(t))},K:function(e,t,n){e.setHours(e.getHours()%12+12*o(new RegExp(n.amPM[1],\"i\").test(t)))},M:function(e,t,n){e.setMonth(n.months.shorthand.indexOf(t))},S:function(e,t){e.setSeconds(parseFloat(t))},U:function(e,t){return new Date(1e3*parseFloat(t))},W:function(e,t,n){var a=parseInt(t),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+n.firstDayOfWeek),i},Y:function(e,t){e.setFullYear(parseFloat(t))},Z:function(e,t){return new Date(t)},d:function(e,t){e.setDate(parseFloat(t))},h:function(e,t){e.setHours(parseFloat(t))},i:function(e,t){e.setMinutes(parseFloat(t))},j:function(e,t){e.setDate(parseFloat(t))},l:f,m:function(e,t){e.setMonth(parseFloat(t)-1)},n:function(e,t){e.setMonth(parseFloat(t)-1)},s:function(e,t){e.setSeconds(parseFloat(t))},u:function(e,t){return new Date(parseFloat(t))},w:f,y:function(e,t){e.setFullYear(2e3+parseFloat(t))}},p={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},h={Z:function(e){return e.toISOString()},D:function(e,t,n){return t.weekdays.shorthand[h.w(e,t,n)]},F:function(e,t,n){return m(h.n(e,t,n)-1,!1,t)},G:function(e,t,n){return i(h.h(e,t,n))},H:function(e){return i(e.getHours())},J:function(e,t){return void 0!==t.ordinal?e.getDate()+t.ordinal(e.getDate()):e.getDate()},K:function(e,t){return t.amPM[o(e.getHours()>11)]},M:function(e,t){return m(e.getMonth(),!0,t)},S:function(e){return i(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,t,n){return n.getWeek(e)},Y:function(e){return e.getFullYear()},d:function(e){return i(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return i(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,t){return t.weekdays.longhand[e.getDay()]},m:function(e){return i(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},v=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,n){var a=n||r;return void 0!==i.formatDate?i.formatDate(e,t,a):t.split(\"\").map((function(t,n,o){return h[t]&&\"\\\\\"!==o[n-1]?h[t](e,a,i):\"\\\\\"!==t?t:\"\"})).join(\"\")}},D=function(e){var t=e.config,i=void 0===t?n:t,o=e.l10n,r=void 0===o?a:o;return function(e,t,a,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=t||(i||n).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,a=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(i&&i.parseDate)l=i.parseDate(e,s);else{l=i&&i.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],h=0,v=0,D=\"\";hr&&(s=n===h.hourElement?s-r-o(!h.amPM):a,f&&Y(void 0,1,h.hourElement)),h.amPM&&u&&(1===l?s+c===23:Math.abs(s-c)>l)&&(h.amPM.textContent=h.l10n.amPM[o(h.amPM.textContent===h.l10n.amPM[0])]),n.value=i(s)}}(e);var t=h._input.value;E(),ve(),h._input.value!==t&&h._debouncedChange()}function E(){if(void 0!==h.hourElement&&void 0!==h.minuteElement){var e,t,n=(parseInt(h.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(h.minuteElement.value,10)||0)%60,i=void 0!==h.secondElement?(parseInt(h.secondElement.value,10)||0)%60:0;void 0!==h.amPM&&(e=n,t=h.amPM.textContent,n=e%12+12*o(t===h.l10n.amPM[1]));var r=void 0!==h.config.minTime||h.config.minDate&&h.minDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.minDate,!0);if(void 0!==h.config.maxTime||h.config.maxDate&&h.maxDateHasTime&&h.latestSelectedDateObj&&0===w(h.latestSelectedDateObj,h.config.maxDate,!0)){var l=void 0!==h.config.maxTime?h.config.maxTime:h.config.maxDate;(n=Math.min(n,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(r){var c=void 0!==h.config.minTime?h.config.minTime:h.config.minDate;(n=Math.max(n,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}I(n,a,i)}}function T(e){var t=e||h.latestSelectedDateObj;t&&I(t.getHours(),t.getMinutes(),t.getSeconds())}function k(){var e=h.config.defaultHour,t=h.config.defaultMinute,n=h.config.defaultSeconds;if(void 0!==h.config.minDate){var a=h.config.minDate.getHours(),i=h.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(t=Math.max(i,t)),e===a&&t===i&&(n=h.config.minDate.getSeconds())}if(void 0!==h.config.maxDate){var o=h.config.maxDate.getHours(),r=h.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(t=Math.min(r,t)),e===o&&t===r&&(n=h.config.maxDate.getSeconds())}I(e,t,n)}function I(e,t,n){void 0!==h.latestSelectedDateObj&&h.latestSelectedDateObj.setHours(e%24,t,n||0,0),h.hourElement&&h.minuteElement&&!h.isMobile&&(h.hourElement.value=i(h.config.time_24hr?e:(12+e)%12+12*o(e%12==0)),h.minuteElement.value=i(t),void 0!==h.amPM&&(h.amPM.textContent=h.l10n.amPM[o(e>=12)]),void 0!==h.secondElement&&(h.secondElement.value=i(n)))}function S(e){var t=parseInt(e.target.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&V(t)}function O(e,t,n,a){return t instanceof Array?t.forEach((function(t){return O(e,t,n,a)})):e instanceof Array?e.forEach((function(e){return O(e,t,n,a)})):(e.addEventListener(t,n,a),void h._handlers.push({element:e,event:t,handler:n,options:a}))}function _(e){return function(t){1===t.which&&e(t)}}function F(){fe(\"onChange\")}function N(e,t){var n=void 0!==e?h.parseDate(e):h.latestSelectedDateObj||(h.config.minDate&&h.config.minDate>h.now?h.config.minDate:h.config.maxDate&&h.config.maxDate=0&&w(e,h.selectedDates[1])<=0}(t)&&!ge(t)&&o.classList.add(\"inRange\"),h.weekNumbers&&1===h.config.showMonths&&\"prevMonthDay\"!==e&&n%7==1&&h.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+h.config.getWeek(t)+\"\"),fe(\"onDayCreate\",o),o}function j(e){e.focus(),\"range\"===h.config.mode&&ee(e)}function H(e){for(var t=e>0?0:h.config.showMonths-1,n=e>0?h.config.showMonths:-1,a=t;a!=n;a+=e)for(var i=h.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&Z(c.dateObj))return c}}function L(e,t){var n=Q(document.activeElement||document.body),a=void 0!==e?e:n?document.activeElement:void 0!==h.selectedDateElem&&Q(h.selectedDateElem)?h.selectedDateElem:void 0!==h.todayDateElem&&Q(h.todayDateElem)?h.todayDateElem:H(t>0?1:-1);return void 0===a?h._input.focus():n?void function(e,t){for(var n=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():h.currentMonth,a=t>0?h.config.showMonths:-1,i=t>0?1:-1,o=n-h.currentMonth;o!=a;o+=i)for(var r=h.daysContainer.children[o],l=n-h.currentMonth===o?e.$i+t:t<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&Z(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(t))return j(s)}h.changeMonth(i),L(H(i),0)}(a,t):j(a)}function W(e,t){for(var n=(new Date(e,t,1).getDay()-h.l10n.firstDayOfWeek+7)%7,a=h.utils.getDaysInMonth((t-1+12)%12),i=h.utils.getDaysInMonth(t),o=window.document.createDocumentFragment(),r=h.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",s=a+1-n,u=0;s<=a;s++,u++)o.appendChild(A(l,new Date(e,t-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(A(\"\",new Date(e,t,s),s,u));for(var f=i+1;f<=42-n&&(1===h.config.showMonths||u%7!=0);f++,u++)o.appendChild(A(c,new Date(e,t+1,f%i),f,u));var m=d(\"div\",\"dayContainer\");return m.appendChild(o),m}function R(){if(void 0!==h.daysContainer){s(h.daysContainer),h.weekNumbers&&s(h.weekNumbers);for(var e=document.createDocumentFragment(),t=0;t1||\"dropdown\"!==h.config.monthSelectorType)){var e=function(e){return!(void 0!==h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&eh.config.maxDate.getMonth())};h.monthsDropdownContainer.tabIndex=-1,h.monthsDropdownContainer.innerHTML=\"\";for(var t=0;t<12;t++)if(e(t)){var n=d(\"option\",\"flatpickr-monthDropdown-month\");n.value=new Date(h.currentYear,t).getMonth().toString(),n.textContent=m(t,h.config.shorthandCurrentMonth,h.l10n),n.tabIndex=-1,h.currentMonth===t&&(n.selected=!0),h.monthsDropdownContainer.appendChild(n)}}}function J(){var e,t=d(\"div\",\"flatpickr-month\"),n=window.document.createDocumentFragment();h.config.showMonths>1||\"static\"===h.config.monthSelectorType?e=d(\"span\",\"cur-month\"):(h.monthsDropdownContainer=d(\"select\",\"flatpickr-monthDropdown-months\"),O(h.monthsDropdownContainer,\"change\",(function(e){var t=e.target,n=parseInt(t.value,10);h.changeMonth(n-h.currentMonth),fe(\"onMonthChange\")})),B(),e=h.monthsDropdownContainer);var a=u(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",h.l10n.yearAriaLabel),h.config.minDate&&i.setAttribute(\"min\",h.config.minDate.getFullYear().toString()),h.config.maxDate&&(i.setAttribute(\"max\",h.config.maxDate.getFullYear().toString()),i.disabled=!!h.config.minDate&&h.config.minDate.getFullYear()===h.config.maxDate.getFullYear());var o=d(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),n.appendChild(o),t.appendChild(n),{container:t,yearElement:i,monthElement:e}}function K(){s(h.monthNav),h.monthNav.appendChild(h.prevMonthNav),h.config.showMonths&&(h.yearElements=[],h.monthElements=[]);for(var e=h.config.showMonths;e--;){var t=J();h.yearElements.push(t.yearElement),h.monthElements.push(t.monthElement),h.monthNav.appendChild(t.container)}h.monthNav.appendChild(h.nextMonthNav)}function U(){h.weekdayContainer?s(h.weekdayContainer):h.weekdayContainer=d(\"div\",\"flatpickr-weekdays\");for(var e=h.config.showMonths;e--;){var t=d(\"div\",\"flatpickr-weekdaycontainer\");h.weekdayContainer.appendChild(t)}return q(),h.weekdayContainer}function q(){if(h.weekdayContainer){var e=h.l10n.firstDayOfWeek,t=h.l10n.weekdays.shorthand.slice();e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function $(e,t){void 0===t&&(t=!0);var n=t?e:e-h.currentMonth;n<0&&!0===h._hidePrevMonthArrow||n>0&&!0===h._hideNextMonthArrow||(h.currentMonth+=n,(h.currentMonth<0||h.currentMonth>11)&&(h.currentYear+=h.currentMonth>11?1:-1,h.currentMonth=(h.currentMonth+12)%12,fe(\"onYearChange\"),B()),R(),fe(\"onMonthChange\"),pe())}function z(e){return!(!h.config.appendTo||!h.config.appendTo.contains(e))||h.calendarContainer.contains(e)}function G(e){if(h.isOpen&&!h.config.inline){var t=\"function\"==typeof(r=e).composedPath?r.composedPath()[0]:r.target,n=z(t),a=t===h.input||t===h.altInput||h.element.contains(t)||e.path&&e.path.indexOf&&(~e.path.indexOf(h.input)||~e.path.indexOf(h.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!z(e.relatedTarget):!a&&!n&&!z(e.relatedTarget),o=!h.config.ignoredFocusElements.some((function(e){return e.contains(t)}));i&&o&&(void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&x(),h.close(),\"range\"===h.config.mode&&1===h.selectedDates.length&&(h.clear(!1),h.redraw()))}var r}function V(e){if(!(!e||h.config.minDate&&eh.config.maxDate.getFullYear())){var t=e,n=h.currentYear!==t;h.currentYear=t||h.currentYear,h.config.maxDate&&h.currentYear===h.config.maxDate.getFullYear()?h.currentMonth=Math.min(h.config.maxDate.getMonth(),h.currentMonth):h.config.minDate&&h.currentYear===h.config.minDate.getFullYear()&&(h.currentMonth=Math.max(h.config.minDate.getMonth(),h.currentMonth)),n&&(h.redraw(),fe(\"onYearChange\"),B())}}function Z(e,t){void 0===t&&(t=!0);var n=h.parseDate(e,void 0,t);if(h.config.minDate&&n&&w(n,h.config.minDate,void 0!==t?t:!h.minDateHasTime)<0||h.config.maxDate&&n&&w(n,h.config.maxDate,void 0!==t?t:!h.maxDateHasTime)>0)return!1;if(0===h.config.enable.length&&0===h.config.disable.length)return!0;if(void 0===n)return!1;for(var a=h.config.enable.length>0,i=a?h.config.enable:h.config.disable,o=0,r=void 0;o=r.from.getTime()&&n.getTime()<=r.to.getTime())return a}return!a}function Q(e){return void 0!==h.daysContainer&&-1===e.className.indexOf(\"hidden\")&&h.daysContainer.contains(e)}function X(e){var t=e.target===h._input,n=h.config.allowInput,a=h.isOpen&&(!n||!t),i=h.config.inline&&t&&!n;if(13===e.keyCode&&t){if(n)return h.setDate(h._input.value,!0,e.target===h.altInput?h.config.altFormat:h.config.dateFormat),e.target.blur();h.open()}else if(z(e.target)||a||i){var o=!!h.timeContainer&&h.timeContainer.contains(e.target);switch(e.keyCode){case 13:o?(e.preventDefault(),x(),le()):ce(e);break;case 27:e.preventDefault(),le();break;case 8:case 46:t&&!h.config.allowInput&&(e.preventDefault(),h.clear());break;case 37:case 39:if(o||t)h.hourElement&&h.hourElement.focus();else if(e.preventDefault(),void 0!==h.daysContainer&&(!1===n||document.activeElement&&Q(document.activeElement))){var r=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),$(r),L(H(1),0)):L(void 0,r)}break;case 38:case 40:e.preventDefault();var l=40===e.keyCode?1:-1;h.daysContainer&&void 0!==e.target.$i||e.target===h.input||e.target===h.altInput?e.ctrlKey?(e.stopPropagation(),V(h.currentYear-l),L(H(1),0)):o||L(void 0,7*l):e.target===h.currentYearElement?V(h.currentYear-l):h.config.enableTime&&(!o&&h.hourElement&&h.hourElement.focus(),x(e),h._debouncedChange());break;case 9:if(o){var c=[h.hourElement,h.minuteElement,h.secondElement,h.amPM].concat(h.pluginElements).filter((function(e){return e})),d=c.indexOf(e.target);if(-1!==d){var s=c[d+(e.shiftKey?-1:1)];e.preventDefault(),(s||h._input).focus()}}else!h.config.noCalendar&&h.daysContainer&&h.daysContainer.contains(e.target)&&e.shiftKey&&(e.preventDefault(),h._input.focus())}}if(void 0!==h.amPM&&e.target===h.amPM)switch(e.key){case h.l10n.amPM[0].charAt(0):case h.l10n.amPM[0].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[0],E(),ve();break;case h.l10n.amPM[1].charAt(0):case h.l10n.amPM[1].charAt(0).toLowerCase():h.amPM.textContent=h.l10n.amPM[1],E(),ve()}(t||z(e.target))&&fe(\"onKeyDown\",e)}function ee(e){if(1===h.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var t=e?e.dateObj.getTime():h.days.firstElementChild.dateObj.getTime(),n=h.parseDate(h.selectedDates[0],void 0,!0).getTime(),a=Math.min(t,h.selectedDates[0].getTime()),i=Math.max(t,h.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>n&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(t<=h.selectedDates[0].getTime()?\"startRange\":\"endRange\"),nt&&m===n&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=n,u=t,(c=m)>Math.min(d,u)&&c0||n.getMinutes()>0||n.getSeconds()>0),h.selectedDates&&(h.selectedDates=h.selectedDates.filter((function(e){return Z(e)})),h.selectedDates.length||\"min\"!==e||T(n),ve()),h.daysContainer&&(re(),void 0!==n?h.currentYearElement[e]=n.getFullYear().toString():h.currentYearElement.removeAttribute(e),h.currentYearElement.disabled=!!a&&void 0!==n&&a.getFullYear()===n.getFullYear())}}function ie(){\"object\"!=typeof h.config.locale&&void 0===y.l10ns[h.config.locale]&&h.config.errorHandler(new Error(\"flatpickr: invalid locale \"+h.config.locale)),h.l10n=e({},y.l10ns.default,\"object\"==typeof h.config.locale?h.config.locale:\"default\"!==h.config.locale?y.l10ns[h.config.locale]:void 0),p.K=\"(\"+h.l10n.amPM[0]+\"|\"+h.l10n.amPM[1]+\"|\"+h.l10n.amPM[0].toLowerCase()+\"|\"+h.l10n.amPM[1].toLowerCase()+\")\",void 0===e({},g,JSON.parse(JSON.stringify(f.dataset||{}))).time_24hr&&void 0===y.defaultConfig.time_24hr&&(h.config.time_24hr=h.l10n.time_24hr),h.formatDate=v(h),h.parseDate=D({config:h.config,l10n:h.l10n})}function oe(e){if(void 0!==h.calendarContainer){fe(\"onPreCalendarPosition\");var t=e||h._positionElement,n=Array.prototype.reduce.call(h.calendarContainer.children,(function(e,t){return e+t.offsetHeight}),0),a=h.calendarContainer.offsetWidth,i=h.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=t.getBoundingClientRect(),d=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&dn,u=window.pageYOffset+l.top+(s?-n-2:t.offsetHeight+2);if(c(h.calendarContainer,\"arrowTop\",!s),c(h.calendarContainer,\"arrowBottom\",s),!h.config.inline){var f=window.pageXOffset+l.left-(null!=r&&\"center\"===r?(a-l.width)/2:0),m=window.document.body.offsetWidth-(window.pageXOffset+l.right),g=f+a>window.document.body.offsetWidth,p=m+a>window.document.body.offsetWidth;if(c(h.calendarContainer,\"rightMost\",g),!h.config.static)if(h.calendarContainer.style.top=u+\"px\",g)if(p){var v=document.styleSheets[0];if(void 0===v)return;var D=window.document.body.offsetWidth,w=Math.max(0,D/2-a/2),b=v.cssRules.length,C=\"{left:\"+l.left+\"px;right:auto;}\";c(h.calendarContainer,\"rightMost\",!1),c(h.calendarContainer,\"centerMost\",!0),v.insertRule(\".flatpickr-calendar.centerMost:before,.flatpickr-calendar.centerMost:after\"+C,b),h.calendarContainer.style.left=w+\"px\",h.calendarContainer.style.right=\"auto\"}else h.calendarContainer.style.left=\"auto\",h.calendarContainer.style.right=m+\"px\";else h.calendarContainer.style.left=f+\"px\",h.calendarContainer.style.right=\"auto\"}}}function re(){h.config.noCalendar||h.isMobile||(pe(),R())}function le(){h._input.focus(),-1!==window.navigator.userAgent.indexOf(\"MSIE\")||void 0!==navigator.msMaxTouchPoints?setTimeout(h.close,0):h.close()}function ce(e){e.preventDefault(),e.stopPropagation();var t=function e(t,n){return n(t)?t:t.parentNode?e(t.parentNode,n):void 0}(e.target,(function(e){return e.classList&&e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\")&&!e.classList.contains(\"notAllowed\")}));if(void 0!==t){var n=t,a=h.latestSelectedDateObj=new Date(n.dateObj.getTime()),i=(a.getMonth()h.currentMonth+h.config.showMonths-1)&&\"range\"!==h.config.mode;if(h.selectedDateElem=n,\"single\"===h.config.mode)h.selectedDates=[a];else if(\"multiple\"===h.config.mode){var o=ge(a);o?h.selectedDates.splice(parseInt(o),1):h.selectedDates.push(a)}else\"range\"===h.config.mode&&(2===h.selectedDates.length&&h.clear(!1,!1),h.latestSelectedDateObj=a,h.selectedDates.push(a),0!==w(a,h.selectedDates[0],!0)&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()})));if(E(),i){var r=h.currentYear!==a.getFullYear();h.currentYear=a.getFullYear(),h.currentMonth=a.getMonth(),r&&(fe(\"onYearChange\"),B()),fe(\"onMonthChange\")}if(pe(),R(),ve(),h.config.enableTime&&setTimeout((function(){return h.showTimeInput=!0}),50),i||\"range\"===h.config.mode||1!==h.config.showMonths?void 0!==h.selectedDateElem&&void 0===h.hourElement&&h.selectedDateElem&&h.selectedDateElem.focus():j(n),void 0!==h.hourElement&&void 0!==h.hourElement&&h.hourElement.focus(),h.config.closeOnSelect){var l=\"single\"===h.config.mode&&!h.config.enableTime,c=\"range\"===h.config.mode&&2===h.selectedDates.length&&!h.config.enableTime;(l||c)&&le()}F()}}h.parseDate=D({config:h.config,l10n:h.l10n}),h._handlers=[],h.pluginElements=[],h.loadedPlugins=[],h._bind=O,h._setHoursFromDate=T,h._positionCalendar=oe,h.changeMonth=$,h.changeYear=V,h.clear=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0),h.input.value=\"\",void 0!==h.altInput&&(h.altInput.value=\"\"),void 0!==h.mobileInput&&(h.mobileInput.value=\"\"),h.selectedDates=[],h.latestSelectedDateObj=void 0,!0===t&&(h.currentYear=h._initialDate.getFullYear(),h.currentMonth=h._initialDate.getMonth()),h.showTimeInput=!1,!0===h.config.enableTime&&k(),h.redraw(),e&&fe(\"onChange\")},h.close=function(){h.isOpen=!1,h.isMobile||(void 0!==h.calendarContainer&&h.calendarContainer.classList.remove(\"open\"),void 0!==h._input&&h._input.classList.remove(\"active\")),fe(\"onClose\")},h._createElement=d,h.destroy=function(){void 0!==h.config&&fe(\"onDestroy\");for(var e=h._handlers.length;e--;){var t=h._handlers[e];t.element.removeEventListener(t.event,t.handler,t.options)}if(h._handlers=[],h.mobileInput)h.mobileInput.parentNode&&h.mobileInput.parentNode.removeChild(h.mobileInput),h.mobileInput=void 0;else if(h.calendarContainer&&h.calendarContainer.parentNode)if(h.config.static&&h.calendarContainer.parentNode){var n=h.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else h.calendarContainer.parentNode.removeChild(h.calendarContainer);h.altInput&&(h.input.type=\"text\",h.altInput.parentNode&&h.altInput.parentNode.removeChild(h.altInput),delete h.altInput),h.input&&(h.input.type=h.input._type,h.input.classList.remove(\"flatpickr-input\"),h.input.removeAttribute(\"readonly\"),h.input.value=\"\"),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete h[e]}catch(e){}}))},h.isEnabled=Z,h.jumpToDate=N,h.open=function(e,t){if(void 0===t&&(t=h._positionElement),!0===h.isMobile)return e&&(e.preventDefault(),e.target&&e.target.blur()),void 0!==h.mobileInput&&(h.mobileInput.focus(),h.mobileInput.click()),void fe(\"onOpen\");if(!h._input.disabled&&!h.config.inline){var n=h.isOpen;h.isOpen=!0,n||(h.calendarContainer.classList.add(\"open\"),h._input.classList.add(\"active\"),fe(\"onOpen\"),oe(t)),!0===h.config.enableTime&&!0===h.config.noCalendar&&(0===h.selectedDates.length&&ne(),!1!==h.config.allowInput||void 0!==e&&h.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return h.hourElement.select()}),50))}},h.redraw=re,h.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(h.config,e),e)void 0!==de[a]&&de[a].forEach((function(e){return e()}));else h.config[e]=n,void 0!==de[e]?de[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(h.config[e]=l(n));h.redraw(),ve(!1)},h.setDate=function(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=h.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return h.clear(t);se(e,n),h.showTimeInput=h.selectedDates.length>0,h.latestSelectedDateObj=h.selectedDates[h.selectedDates.length-1],h.redraw(),N(),T(),0===h.selectedDates.length&&h.clear(!1),ve(t),t&&fe(\"onChange\")},h.toggle=function(e){if(!0===h.isOpen)return h.close();h.open(e)};var de={locale:[ie,q],showMonths:[K,M,U],minDate:[N],maxDate:[N]};function se(e,t){var n=[];if(e instanceof Array)n=e.map((function(e){return h.parseDate(e,t)}));else if(e instanceof Date||\"number\"==typeof e)n=[h.parseDate(e,t)];else if(\"string\"==typeof e)switch(h.config.mode){case\"single\":case\"time\":n=[h.parseDate(e,t)];break;case\"multiple\":n=e.split(h.config.conjunction).map((function(e){return h.parseDate(e,t)}));break;case\"range\":n=e.split(h.l10n.rangeSeparator).map((function(e){return h.parseDate(e,t)}))}else h.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));h.selectedDates=n.filter((function(e){return e instanceof Date&&Z(e,!1)})),\"range\"===h.config.mode&&h.selectedDates.sort((function(e,t){return e.getTime()-t.getTime()}))}function ue(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?h.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:h.parseDate(e.from,void 0),to:h.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function fe(e,t){if(void 0!==h.config){var n=h.config[e];if(void 0!==n&&n.length>0)for(var a=0;n[a]&&a1||\"static\"===h.config.monthSelectorType?h.monthElements[t].textContent=m(n.getMonth(),h.config.shorthandCurrentMonth,h.l10n)+\" \":h.monthsDropdownContainer.value=n.getMonth().toString(),e.value=n.getFullYear().toString()})),h._hidePrevMonthArrow=void 0!==h.config.minDate&&(h.currentYear===h.config.minDate.getFullYear()?h.currentMonth<=h.config.minDate.getMonth():h.currentYearh.config.maxDate.getMonth():h.currentYear>h.config.maxDate.getFullYear()))}function he(e){return h.selectedDates.map((function(t){return h.formatDate(t,e)})).filter((function(e,t,n){return\"range\"!==h.config.mode||h.config.enableTime||n.indexOf(e)===t})).join(\"range\"!==h.config.mode?h.config.conjunction:h.l10n.rangeSeparator)}function ve(e){void 0===e&&(e=!0),void 0!==h.mobileInput&&h.mobileFormatStr&&(h.mobileInput.value=void 0!==h.latestSelectedDateObj?h.formatDate(h.latestSelectedDateObj,h.mobileFormatStr):\"\"),h.input.value=he(h.config.dateFormat),void 0!==h.altInput&&(h.altInput.value=he(h.config.altFormat)),!1!==e&&fe(\"onValueUpdate\")}function De(e){var t=h.prevMonthNav.contains(e.target),n=h.nextMonthNav.contains(e.target);t||n?$(t?-1:1):h.yearElements.indexOf(e.target)>=0?e.target.select():e.target.classList.contains(\"arrowUp\")?h.changeYear(h.currentYear+1):e.target.classList.contains(\"arrowDown\")&&h.changeYear(h.currentYear-1)}return function(){h.element=h.input=f,h.isOpen=!1,function(){var a=[\"wrap\",\"weekNumbers\",\"allowInput\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e({},g,JSON.parse(JSON.stringify(f.dataset||{}))),o={};h.config.parseDate=i.parseDate,h.config.formatDate=i.formatDate,Object.defineProperty(h.config,\"enable\",{get:function(){return h.config._enable},set:function(e){h.config._enable=ue(e)}}),Object.defineProperty(h.config,\"disable\",{get:function(){return h.config._disable},set:function(e){h.config._disable=ue(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var c=y.defaultConfig.dateFormat||n.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):c+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=y.defaultConfig.altFormat||n.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}i.altInputClass||(h.config.altInputClass=h.input.className+\" \"+h.config.altInputClass),Object.defineProperty(h.config,\"minDate\",{get:function(){return h.config._minDate},set:ae(\"min\")}),Object.defineProperty(h.config,\"maxDate\",{get:function(){return h.config._maxDate},set:ae(\"max\")});var s=function(e){return function(t){h.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=h.parseDate(t,\"H:i:S\")}};Object.defineProperty(h.config,\"minTime\",{get:function(){return h.config._minTime},set:s(\"min\")}),Object.defineProperty(h.config,\"maxTime\",{get:function(){return h.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(h.config.noCalendar=!0,h.config.enableTime=!0),Object.assign(h.config,o,i);for(var u=0;u-1?h.config[p]=l(m[p]).map(C).concat(h.config[p]):void 0===i[p]&&(h.config[p]=m[p])}fe(\"onParseConfig\")}(),ie(),h.input=h.config.wrap?f.querySelector(\"[data-input]\"):f,h.input?(h.input._type=h.input.type,h.input.type=\"text\",h.input.classList.add(\"flatpickr-input\"),h._input=h.input,h.config.altInput&&(h.altInput=d(h.input.nodeName,h.config.altInputClass),h._input=h.altInput,h.altInput.placeholder=h.input.placeholder,h.altInput.disabled=h.input.disabled,h.altInput.required=h.input.required,h.altInput.tabIndex=h.input.tabIndex,h.altInput.type=\"text\",h.input.setAttribute(\"type\",\"hidden\"),!h.config.static&&h.input.parentNode&&h.input.parentNode.insertBefore(h.altInput,h.input.nextSibling)),h.config.allowInput||h._input.setAttribute(\"readonly\",\"readonly\"),h._positionElement=h.config.positionElement||h._input):h.config.errorHandler(new Error(\"Invalid input element specified\")),function(){h.selectedDates=[],h.now=h.parseDate(h.config.now)||new Date;var e=h.config.defaultDate||(\"INPUT\"!==h.input.nodeName&&\"TEXTAREA\"!==h.input.nodeName||!h.input.placeholder||h.input.value!==h.input.placeholder?h.input.value:null);e&&se(e,h.config.dateFormat),h._initialDate=h.selectedDates.length>0?h.selectedDates[0]:h.config.minDate&&h.config.minDate.getTime()>h.now.getTime()?h.config.minDate:h.config.maxDate&&h.config.maxDate.getTime()0&&(h.latestSelectedDateObj=h.selectedDates[0]),void 0!==h.config.minTime&&(h.config.minTime=h.parseDate(h.config.minTime,\"H:i\")),void 0!==h.config.maxTime&&(h.config.maxTime=h.parseDate(h.config.maxTime,\"H:i\")),h.minDateHasTime=!!h.config.minDate&&(h.config.minDate.getHours()>0||h.config.minDate.getMinutes()>0||h.config.minDate.getSeconds()>0),h.maxDateHasTime=!!h.config.maxDate&&(h.config.maxDate.getHours()>0||h.config.maxDate.getMinutes()>0||h.config.maxDate.getSeconds()>0),Object.defineProperty(h,\"showTimeInput\",{get:function(){return h._showTimeInput},set:function(e){h._showTimeInput=e,h.calendarContainer&&c(h.calendarContainer,\"showTimeInput\",e),h.isOpen&&oe()}})}(),h.utils={getDaysInMonth:function(e,t){return void 0===e&&(e=h.currentMonth),void 0===t&&(t=h.currentYear),1===e&&(t%4==0&&t%100!=0||t%400==0)?29:h.l10n.daysInMonth[e]}},h.isMobile||function(){var e=window.document.createDocumentFragment();if(h.calendarContainer=d(\"div\",\"flatpickr-calendar\"),h.calendarContainer.tabIndex=-1,!h.config.noCalendar){if(e.appendChild((h.monthNav=d(\"div\",\"flatpickr-months\"),h.yearElements=[],h.monthElements=[],h.prevMonthNav=d(\"span\",\"flatpickr-prev-month\"),h.prevMonthNav.innerHTML=h.config.prevArrow,h.nextMonthNav=d(\"span\",\"flatpickr-next-month\"),h.nextMonthNav.innerHTML=h.config.nextArrow,K(),Object.defineProperty(h,\"_hidePrevMonthArrow\",{get:function(){return h.__hidePrevMonthArrow},set:function(e){h.__hidePrevMonthArrow!==e&&(c(h.prevMonthNav,\"flatpickr-disabled\",e),h.__hidePrevMonthArrow=e)}}),Object.defineProperty(h,\"_hideNextMonthArrow\",{get:function(){return h.__hideNextMonthArrow},set:function(e){h.__hideNextMonthArrow!==e&&(c(h.nextMonthNav,\"flatpickr-disabled\",e),h.__hideNextMonthArrow=e)}}),h.currentYearElement=h.yearElements[0],pe(),h.monthNav)),h.innerContainer=d(\"div\",\"flatpickr-innerContainer\"),h.config.weekNumbers){var t=function(){h.calendarContainer.classList.add(\"hasWeeks\");var e=d(\"div\",\"flatpickr-weekwrapper\");e.appendChild(d(\"span\",\"flatpickr-weekday\",h.l10n.weekAbbreviation));var t=d(\"div\",\"flatpickr-weeks\");return e.appendChild(t),{weekWrapper:e,weekNumbers:t}}(),n=t.weekWrapper,a=t.weekNumbers;h.innerContainer.appendChild(n),h.weekNumbers=a,h.weekWrapper=n}h.rContainer=d(\"div\",\"flatpickr-rContainer\"),h.rContainer.appendChild(U()),h.daysContainer||(h.daysContainer=d(\"div\",\"flatpickr-days\"),h.daysContainer.tabIndex=-1),R(),h.rContainer.appendChild(h.daysContainer),h.innerContainer.appendChild(h.rContainer),e.appendChild(h.innerContainer)}h.config.enableTime&&e.appendChild(function(){h.calendarContainer.classList.add(\"hasTime\"),h.config.noCalendar&&h.calendarContainer.classList.add(\"noCalendar\"),h.timeContainer=d(\"div\",\"flatpickr-time\"),h.timeContainer.tabIndex=-1;var e=d(\"span\",\"flatpickr-time-separator\",\":\"),t=u(\"flatpickr-hour\",{\"aria-label\":h.l10n.hourAriaLabel});h.hourElement=t.getElementsByTagName(\"input\")[0];var n=u(\"flatpickr-minute\",{\"aria-label\":h.l10n.minuteAriaLabel});if(h.minuteElement=n.getElementsByTagName(\"input\")[0],h.hourElement.tabIndex=h.minuteElement.tabIndex=-1,h.hourElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getHours():h.config.time_24hr?h.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(h.config.defaultHour)),h.minuteElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getMinutes():h.config.defaultMinute),h.hourElement.setAttribute(\"step\",h.config.hourIncrement.toString()),h.minuteElement.setAttribute(\"step\",h.config.minuteIncrement.toString()),h.hourElement.setAttribute(\"min\",h.config.time_24hr?\"0\":\"1\"),h.hourElement.setAttribute(\"max\",h.config.time_24hr?\"23\":\"12\"),h.minuteElement.setAttribute(\"min\",\"0\"),h.minuteElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(t),h.timeContainer.appendChild(e),h.timeContainer.appendChild(n),h.config.time_24hr&&h.timeContainer.classList.add(\"time24hr\"),h.config.enableSeconds){h.timeContainer.classList.add(\"hasSeconds\");var a=u(\"flatpickr-second\");h.secondElement=a.getElementsByTagName(\"input\")[0],h.secondElement.value=i(h.latestSelectedDateObj?h.latestSelectedDateObj.getSeconds():h.config.defaultSeconds),h.secondElement.setAttribute(\"step\",h.minuteElement.getAttribute(\"step\")),h.secondElement.setAttribute(\"min\",\"0\"),h.secondElement.setAttribute(\"max\",\"59\"),h.timeContainer.appendChild(d(\"span\",\"flatpickr-time-separator\",\":\")),h.timeContainer.appendChild(a)}return h.config.time_24hr||(h.amPM=d(\"span\",\"flatpickr-am-pm\",h.l10n.amPM[o((h.latestSelectedDateObj?h.hourElement.value:h.config.defaultHour)>11)]),h.amPM.title=h.l10n.toggleTitle,h.amPM.tabIndex=-1,h.timeContainer.appendChild(h.amPM)),h.timeContainer}()),c(h.calendarContainer,\"rangeMode\",\"range\"===h.config.mode),c(h.calendarContainer,\"animate\",!0===h.config.animate),c(h.calendarContainer,\"multiMonth\",h.config.showMonths>1),h.calendarContainer.appendChild(e);var r=void 0!==h.config.appendTo&&void 0!==h.config.appendTo.nodeType;if((h.config.inline||h.config.static)&&(h.calendarContainer.classList.add(h.config.inline?\"inline\":\"static\"),h.config.inline&&(!r&&h.element.parentNode?h.element.parentNode.insertBefore(h.calendarContainer,h._input.nextSibling):void 0!==h.config.appendTo&&h.config.appendTo.appendChild(h.calendarContainer)),h.config.static)){var l=d(\"div\",\"flatpickr-wrapper\");h.element.parentNode&&h.element.parentNode.insertBefore(l,h.element),l.appendChild(h.element),h.altInput&&l.appendChild(h.altInput),l.appendChild(h.calendarContainer)}h.config.static||h.config.inline||(void 0!==h.config.appendTo?h.config.appendTo:window.document.body).appendChild(h.calendarContainer)}(),function(){if(h.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(h.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(t){return O(t,\"click\",h[e])}))})),h.isMobile)!function(){var e=h.config.enableTime?h.config.noCalendar?\"time\":\"datetime-local\":\"date\";h.mobileInput=d(\"input\",h.input.className+\" flatpickr-mobile\"),h.mobileInput.step=h.input.getAttribute(\"step\")||\"any\",h.mobileInput.tabIndex=1,h.mobileInput.type=e,h.mobileInput.disabled=h.input.disabled,h.mobileInput.required=h.input.required,h.mobileInput.placeholder=h.input.placeholder,h.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",h.selectedDates.length>0&&(h.mobileInput.defaultValue=h.mobileInput.value=h.formatDate(h.selectedDates[0],h.mobileFormatStr)),h.config.minDate&&(h.mobileInput.min=h.formatDate(h.config.minDate,\"Y-m-d\")),h.config.maxDate&&(h.mobileInput.max=h.formatDate(h.config.maxDate,\"Y-m-d\")),h.input.type=\"hidden\",void 0!==h.altInput&&(h.altInput.type=\"hidden\");try{h.input.parentNode&&h.input.parentNode.insertBefore(h.mobileInput,h.input.nextSibling)}catch(e){}O(h.mobileInput,\"change\",(function(e){h.setDate(e.target.value,!1,h.mobileFormatStr),fe(\"onChange\"),fe(\"onClose\")}))}();else{var e=r(te,50);h._debouncedChange=r(F,300),h.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&O(h.daysContainer,\"mouseover\",(function(e){\"range\"===h.config.mode&&ee(e.target)})),O(window.document.body,\"keydown\",X),h.config.inline||h.config.static||O(window,\"resize\",e),void 0!==window.ontouchstart?O(window.document,\"touchstart\",G):O(window.document,\"mousedown\",_(G)),O(window.document,\"focus\",G,{capture:!0}),!0===h.config.clickOpens&&(O(h._input,\"focus\",h.open),O(h._input,\"mousedown\",_(h.open))),void 0!==h.daysContainer&&(O(h.monthNav,\"mousedown\",_(De)),O(h.monthNav,[\"keyup\",\"increment\"],S),O(h.daysContainer,\"mousedown\",_(ce))),void 0!==h.timeContainer&&void 0!==h.minuteElement&&void 0!==h.hourElement&&(O(h.timeContainer,[\"increment\"],x),O(h.timeContainer,\"blur\",x,{capture:!0}),O(h.timeContainer,\"mousedown\",_(P)),O([h.hourElement,h.minuteElement],[\"focus\",\"click\"],(function(e){return e.target.select()})),void 0!==h.secondElement&&O(h.secondElement,\"focus\",(function(){return h.secondElement&&h.secondElement.select()})),void 0!==h.amPM&&O(h.amPM,\"mousedown\",_((function(e){x(e),F()}))))}}(),(h.selectedDates.length||h.config.noCalendar)&&(h.config.enableTime&&T(h.config.noCalendar?h.latestSelectedDateObj||h.config.minDate:void 0),ve(!1)),M(),h.showTimeInput=h.selectedDates.length>0||h.config.noCalendar;var a=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!h.isMobile&&a&&oe(),fe(\"onReady\")}(),h}function M(e,t){for(var n=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render());const{start:s,end:l,value:r,step:o,title:n}=this.model.properties;this.on_change([s,l,r,o],()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s})});const{bar_color:a}=this.model.properties;this.on_change(a,()=>{this._set_bar_color()});const{show_value:d}=this.model.properties;this.on_change([r,n,d],()=>this._update_title())}styles(){return[...super.styles(),h.default,c.default]}_update_title(){r.empty(this.title_el);const t=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=t?\"none\":\"\",!t&&(0!=this.model.title.length&&(this.title_el.textContent=this.model.title+\": \"),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map(t=>this.model.pretty(t)).join(\" .. \");this.title_el.appendChild(r.span({class:d.bk_slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=this.model.bar_color}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let n;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};n=o.repeat(t,i.length)}else n=!1;if(null==this.slider_el){this.slider_el=r.div(),l.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:n,orientation:this.model.orientation,direction:this.model.direction}),this.noUiSlider.on(\"slide\",(t,e,i)=>this._slide(i)),this.noUiSlider.on(\"change\",(t,e,i)=>this._change(i));const o=(t,e)=>{if(!n)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this.noUiSlider.on(\"start\",(t,e)=>o(e,!0)),this.noUiSlider.on(\"end\",(t,e)=>o(e,!1))}else this.noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s});this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=r.div({class:d.bk_slider_title}),this._update_title(),this.group_el=r.div({class:_.bk_input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){this.model.value=this._calc_from(t),this.model.value_throttled=this.model.value}}u.__name__=\"AbstractBaseSliderView\";class m extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=m,m.__name__=\"AbstractSliderView\";class p extends u{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=p,p.__name__=\"AbstractRangeSliderView\";class b extends n.Control{constructor(t){super(t),this.connected=!1}static init_AbstractSlider(){this.define(({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:r,Enum:o,Ref:n})=>({title:[s,\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[r(s,n(a.TickFormatter))],direction:[o(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]}))}_formatter(t,e){return\"\"+t}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=b,b.__name__=\"AbstractSlider\",b.init_AbstractSlider()},\n", - " 424: function _(t,e,r){\n", - " /*! nouislider - 14.6.0 - 6/27/2020 */\n", - " var n;n=function(){\"use strict\";var t=\"14.6.0\";function e(t){t.parentElement.removeChild(t)}function r(t){return null!=t}function n(t){t.preventDefault()}function i(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function o(t,e,r){r>0&&(u(t,e),setTimeout((function(){c(t,e)}),r))}function s(t){return Math.max(Math.min(t,100),0)}function a(t){return Array.isArray(t)?t:[t]}function l(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function u(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function c(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function p(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function f(t,e){return 100/(e-t)}function d(t,e,r){return 100*e/(t[r+1]-t[r])}function h(t,e){for(var r=1;t>=e[r];)r+=1;return r}function m(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=h(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return d(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/f(s,a)}function g(t,e,r,n){if(100===n)return n;var i=h(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}function v(t,e,r){var n;if(\"number\"==typeof e&&(e=[e]),!Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' contains invalid value.\");if(!i(n=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!i(e[0]))throw new Error(\"noUiSlider (14.6.0): 'range' value isn't numeric.\");r.xPct.push(n),r.xVal.push(e[0]),n?r.xSteps.push(!isNaN(e[1])&&e[1]):isNaN(e[1])||(r.xSteps[0]=e[1]),r.xHighestCompleteStep.push(0)}function b(t,e,r){if(e)if(r.xVal[t]!==r.xVal[t+1]){r.xSteps[t]=d([r.xVal[t],r.xVal[t+1]],e,0)/f(r.xPct[t],r.xPct[t+1]);var n=(r.xVal[t+1]-r.xVal[t])/r.xNumSteps[t],i=Math.ceil(Number(n.toFixed(3))-1),o=r.xVal[t]+r.xNumSteps[t]*i;r.xHighestCompleteStep[t]=o}else r.xSteps[t]=r.xHighestCompleteStep[t]=r.xVal[t]}function x(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.xHighestCompleteStep=[],this.snap=e;var i=[];for(n in t)t.hasOwnProperty(n)&&i.push([t[n],n]);for(i.length&&\"object\"==typeof i[0][0]?i.sort((function(t,e){return t[0][0]-e[0][0]})):i.sort((function(t,e){return t[0]-e[0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++;var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},x.prototype.toStepping=function(t){return t=m(this.xVal,this.xPct,t)},x.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=h(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*f(s,e[n]))}(this.xVal,this.xPct,t)},x.prototype.getStep=function(t){return t=g(this.xPct,this.xSteps,this.snap,t)},x.prototype.getDefaultStep=function(t,e,r){var n=h(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},x.prototype.getNearbySteps=function(t){var e=h(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},x.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(l);return Math.max.apply(null,t)},x.prototype.convert=function(t){return this.getStep(this.toStepping(t))};var S={to:function(t){return void 0!==t&&t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"};function y(t){if(function(t){return\"object\"==typeof t&&\"function\"==typeof t.to&&\"function\"==typeof t.from}(t))return!0;throw new Error(\"noUiSlider (14.6.0): 'format' requires 'to' and 'from' methods.\")}function E(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'step' is not numeric.\");t.singleStep=e}function C(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function P(t,e){if(!i(e))throw new Error(\"noUiSlider (14.6.0): 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function N(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider (14.6.0): 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider (14.6.0): Missing 'min' or 'max' in 'range'.\");if(e.min===e.max)throw new Error(\"noUiSlider (14.6.0): 'range' 'min' and 'max' cannot be equal.\");t.spectrum=new x(e,t.snap,t.singleStep)}function k(t,e){if(e=a(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider (14.6.0): 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(t.snap=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'snap' option must be a boolean.\")}function A(t,e){if(t.animate=e,\"boolean\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animate' option must be a boolean.\")}function V(t,e){if(t.animationDuration=e,\"number\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'animationDuration' option must be a number.\")}function D(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider (14.6.0): 'padding' option must not exceed 100% of the range.\")}}function H(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider (14.6.0): 'direction' option was not recognized.\")}}function j(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider (14.6.0): 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider (14.6.0): 'fixed' behaviour must be used with 2 handles\");O(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider (14.6.0): 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,fixed:i,snap:o,hover:s,unconstrained:a}}function F(t,e){if(!1!==e)if(!0===e){t.tooltips=[];for(var r=0;r0&&((a=M(i,!1)).className=c(s,r.cssClasses.value),a.setAttribute(\"data-value\",o),a.style[r.style]=t+\"%\",a.innerHTML=n.to(o))}}(o,t[o][0],t[o][1])})),i}function B(){h&&(e(h),h=null)}function q(t){B();var e=t.mode,r=t.density||1,n=t.filter||!1,i=function(t,e,r){if(\"range\"===t||\"steps\"===t)return y.xVal;if(\"count\"===t){if(e<2)throw new Error(\"noUiSlider (14.6.0): 'values' (>= 2) required for mode 'count'.\");var n=e-1,i=100/n;for(e=[];n--;)e[n]=n*i;e.push(100),t=\"positions\"}return\"positions\"===t?e.map((function(t){return y.fromStepping(r?y.getStep(t):t)})):\"values\"===t?r?e.map((function(t){return y.fromStepping(y.getStep(y.toStepping(t)))})):e:void 0}(e,t.values||!1,t.stepped||!1),o=function(t,e,r){var n,i={},o=y.xVal[0],s=y.xVal[y.xVal.length-1],a=!1,l=!1,u=0;return n=r.slice().sort((function(t,e){return t-e})),(r=n.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(r.unshift(o),a=!0),r[r.length-1]!==s&&(r.push(s),l=!0),r.forEach((function(n,o){var s,c,p,f,d,h,m,g,v,b,x=n,S=r[o+1],w=\"steps\"===e;if(w&&(s=y.xNumSteps[o]),s||(s=S-x),!1!==x&&void 0!==S)for(s=Math.max(s,1e-7),c=x;c<=S;c=(c+s).toFixed(7)/1){for(g=(d=(f=y.toStepping(c))-u)/t,b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[y.fromStepping(h),0];m=r.indexOf(c)>-1?1:w?2:0,!o&&a&&c!==S&&(m=0),c===S&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}(r,e,i),s=t.format||{to:Math.round};return h=w.appendChild(T(o,n,s))}function X(){var t=l.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||l[e]:t.height||l[e]}function _(t,e,n,i){var o=function(o){return!!(o=function(t,e,r){var n,i,o=0===t.type.indexOf(\"touch\"),s=0===t.type.indexOf(\"mouse\"),a=0===t.type.indexOf(\"pointer\");if(0===t.type.indexOf(\"MSPointer\")&&(a=!0),o){var l=function(t){return t.target===r||r.contains(t.target)||t.target.shadowRoot&&t.target.shadowRoot.contains(r)};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;n=u[0].pageX,i=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;n=c.pageX,i=c.pageY}}return e=e||p(U),(s||a)&&(n=t.clientX+e.x,i=t.clientY+e.y),t.pageOffset=e,t.points=[n,i],t.cursor=s||a,t}(o,i.pageOffset,i.target||e))&&!(H()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==o.buttons&&o.buttons>1)&&(!i.hover||!o.buttons)&&(S||o.preventDefault(),o.calcPoint=o.points[r.ort],void n(o,i)));var s,a},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!S&&{passive:!0}),s.push([t,o])})),s}function I(t){var e,n,i,o,a,u,c=100*(t-(e=l,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,a=o.documentElement,u=p(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(u.x=0),n?i.top+u.y-a.clientTop:i.left+u.x-a.clientLeft))/X();return c=s(c),r.dir?100-c:c}function W(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&G(t,e)}function $(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return G(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);it(n>0,100*n/e.baseSize,e.locations,e.handleNumbers)}function G(t,e){e.handle&&(c(e.handle,r.cssClasses.active),N-=1),e.listeners.forEach((function(t){A.removeEventListener(t[0],t[1])})),0===N&&(c(w,r.cssClasses.drag),st(),t.cursor&&(V.style.cursor=\"\",V.removeEventListener(\"selectstart\",n))),e.handleNumbers.forEach((function(t){et(\"change\",t),et(\"set\",t),et(\"end\",t)}))}function J(t,e){if(e.handleNumbers.some(j))return!1;var i;1===e.handleNumbers.length&&(i=f[e.handleNumbers[0]].children[0],N+=1,u(i,r.cssClasses.active)),t.stopPropagation();var o=[],s=_(x.move,A,$,{target:t.target,handle:i,listeners:o,startCalcPoint:t.calcPoint,baseSize:X(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:C.slice()}),a=_(x.end,A,G,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers}),l=_(\"mouseout\",A,W,{target:t.target,handle:i,listeners:o,doNotReject:!0,handleNumbers:e.handleNumbers});o.push.apply(o,s.concat(a,l)),t.cursor&&(V.style.cursor=getComputedStyle(t.target).cursor,f.length>1&&u(w,r.cssClasses.drag),V.addEventListener(\"selectstart\",n,!1)),e.handleNumbers.forEach((function(t){et(\"start\",t)}))}function K(t){if(!t.buttons&&!t.touches)return!1;t.stopPropagation();var e=I(t.calcPoint),n=function(t){var e=100,r=!1;return f.forEach((function(n,i){if(!j(i)){var o=C[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);if(!1===n)return!1;r.events.snap||o(w,r.cssClasses.tap,r.animationDuration),at(n,e,!0,!0),st(),et(\"slide\",n,!0),et(\"update\",n,!0),et(\"change\",n,!0),et(\"set\",n,!0),r.events.snap&&J(t,{handleNumbers:[n]})}function Q(t){var e=I(t.calcPoint),r=y.getStep(e),n=y.fromStepping(r);Object.keys(k).forEach((function(t){\"hover\"===t.split(\".\")[0]&&k[t].forEach((function(t){t.call(g,n)}))}))}function Z(t,e){k[t]=k[t]||[],k[t].push(e),\"update\"===t.split(\".\")[0]&&f.forEach((function(t,e){et(\"update\",e)}))}function tt(t){var e=t&&t.split(\".\")[0],r=e&&t.substring(e.length);Object.keys(k).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||delete k[t]}))}function et(t,e,n){Object.keys(k).forEach((function(i){var o=i.split(\".\")[0];t===o&&k[i].forEach((function(t){t.call(g,E.map(r.format.to),e,E.slice(),n||!1,C.slice(),g)}))}))}function rt(t,e,n,i,o,a){var l;return f.length>1&&!r.events.unconstrained&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.margin,0),n=Math.max(n,l)),o&&e1&&r.limit&&(i&&e>0&&(l=y.getAbsoluteDistance(t[e-1],r.limit,0),n=Math.min(n,l)),o&&e1?n.forEach((function(t,r){var n=rt(i,t,i[t]+e,o[r],s[r],!1);!1===n?e=0:(e=n-i[t],i[t]=n)})):o=s=[!0];var a=!1;n.forEach((function(t,n){a=at(t,r[t]+e,o[n],s[n])||a})),a&&n.forEach((function(t){et(\"update\",t),et(\"slide\",t)}))}function ot(t,e){return r.dir?100-t-e:t}function st(){P.forEach((function(t){var e=C[t]>50?-1:1,r=3+(f.length+e*t);f[t].style.zIndex=r}))}function at(t,e,n,i){return!1!==(e=rt(C,t,e,n,i,!1))&&(function(t,e){C[t]=e,E[t]=y.fromStepping(e);var n=\"translate(\"+nt(10*(ot(e,0)-D)+\"%\",\"0\")+\")\";f[t].style[r.transformRule]=n,lt(t),lt(t+1)}(t,e),!0)}function lt(t){if(d[t]){var e=0,n=100;0!==t&&(e=C[t-1]),t!==d.length-1&&(n=C[t]);var i=n-e,o=\"translate(\"+nt(ot(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+nt(i/100,\"1\")+\")\";d[t].style[r.transformRule]=o+\" \"+s}}function ut(t,e){return null===t||!1===t||void 0===t?C[e]:(\"number\"==typeof t&&(t=String(t)),t=r.format.from(t),!1===(t=y.toStepping(t))||isNaN(t)?C[e]:t)}function ct(t,e){var n=a(t),i=void 0===C[0];e=void 0===e||!!e,r.animate&&!i&&o(w,r.cssClasses.tap,r.animationDuration),P.forEach((function(t){at(t,ut(n[t],t),!0,!1)}));for(var s=1===P.length?0:1;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=y.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}return u(v=w,r.cssClasses.target),0===r.dir?u(v,r.cssClasses.ltr):u(v,r.cssClasses.rtl),0===r.ort?u(v,r.cssClasses.horizontal):u(v,r.cssClasses.vertical),u(v,\"rtl\"===getComputedStyle(v).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),l=M(v,r.cssClasses.base),function(t,e){var n=M(e,r.cssClasses.connects);f=[],(d=[]).push(L(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip {\\n -webkit-transform: translate(50%, 0);\\n transform: translate(50%, 0);\\n left: auto;\\n bottom: 10px;\\n}\\n.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip {\\n -webkit-transform: translate(0, -18px);\\n transform: translate(0, -18px);\\n top: auto;\\n right: 28px;\\n}\\n.bk-root .noUi-handle {\\n cursor: grab;\\n cursor: -webkit-grab;\\n}\\n.bk-root .noUi-handle.noUi-active {\\n cursor: grabbing;\\n cursor: -webkit-grabbing;\\n}\\n.bk-root .noUi-handle:after,\\n.bk-root .noUi-handle:before {\\n display: none;\\n}\\n.bk-root .noUi-tooltip {\\n display: none;\\n white-space: nowrap;\\n}\\n.bk-root .noUi-handle:hover .noUi-tooltip {\\n display: block;\\n}\\n.bk-root .noUi-horizontal {\\n width: 100%;\\n height: 10px;\\n}\\n.bk-root .noUi-vertical {\\n width: 10px;\\n height: 100%;\\n}\\n.bk-root .noUi-horizontal .noUi-handle {\\n width: 14px;\\n height: 18px;\\n right: -7px;\\n top: -5px;\\n}\\n.bk-root .noUi-vertical .noUi-handle {\\n width: 18px;\\n height: 14px;\\n right: -5px;\\n top: -7px;\\n}\\n.bk-root .noUi-target.noUi-horizontal {\\n margin: 5px 0px;\\n}\\n.bk-root .noUi-target.noUi-vertical {\\n margin: 0px 5px;\\n}\\n\"},\n", - " 427: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default=\"\\n.bk-root .bk-slider-title {\\n white-space: nowrap;\\n}\\n.bk-root .bk-slider-value {\\n font-weight: 600;\\n}\\n\"},\n", - " 428: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1).__importDefault(e(186)),a=e(423);class d extends a.AbstractSliderView{}i.DateSliderView=d,d.__name__=\"DateSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_DateSlider(){this.prototype.default_view=d,this.override({format:\"%d %b %Y\"})}_formatter(e,t){return r.default(e,t)}}i.DateSlider=s,s.__name__=\"DateSlider\",s.init_DateSlider()},\n", - " 429: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const r=e(1),_=e(430),n=r.__importStar(e(18));class s extends _.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.model.text}}i.DivView=s,s.__name__=\"DivView\";class a extends _.Markup{constructor(e){super(e)}static init_Div(){this.prototype.default_view=s,this.define({render_as_text:[n.Boolean,!1]})}}i.Div=a,a.__name__=\"Div\",a.init_Div()},\n", - " 430: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),a=e(217),n=e(72),l=i.__importStar(e(18)),r=e(472),_=e(431),c=i.__importDefault(e(432));class u extends r.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>{this.layout.invalidate_cache(),this.render(),this.root.compute_layout()})}styles(){return[...super.styles(),c.default]}_update_layout(){this.layout=new a.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const e=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=n.div({class:_.bk_clearfix,style:e}),this.el.appendChild(this.markup_el)}}s.MarkupView=u,u.__name__=\"MarkupView\";class o extends r.Widget{constructor(e){super(e)}static init_Markup(){this.define({text:[l.String,\"\"],style:[l.Any,{}]})}}s.Markup=o,o.__name__=\"Markup\",o.init_Markup()},\n", - " 431: function _(e,c,f){Object.defineProperty(f,\"__esModule\",{value:!0}),f.bk_clearfix=\"bk-clearfix\"},\n", - " 432: function _(e,n,t){Object.defineProperty(t,\"__esModule\",{value:!0});t.default='\\n.bk-root .bk-clearfix:before,\\n.bk-root .bk-clearfix:after {\\n content: \"\";\\n display: table;\\n}\\n.bk-root .bk-clearfix:after {\\n clear: both;\\n}\\n'},\n", - " 433: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(404),o=e(313),_=e(72),d=n.__importStar(e(18)),l=e(8),r=e(173),u=e(281),c=e(282),h=n.__importDefault(e(284));class p extends s.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=_.div({class:[c.bk_caret,r.bk_down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(u.bk_dropdown_toggle),t.addEventListener(\"click\",()=>this._toggle_menu()),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map((e,t)=>{if(null==e)return _.div({class:c.bk_divider});{const i=l.isString(e)?e:e[0],n=_.div({},i);return n.addEventListener(\"click\",()=>this._item_click(t)),n}});this.menu=_.div({class:[c.bk_menu,r.bk_below]},t),this.el.appendChild(this.menu),_.undisplay(this.menu)}_show_menu(){if(!this._open){this._open=!0,_.display(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,_.undisplay(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new o.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=l.isString(t)?t:t[1];l.isString(i)?this.model.trigger_event(new o.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class m extends s.AbstractButton{constructor(e){super(e)}static init_Dropdown(){this.prototype.default_view=p,this.define({split:[d.Boolean,!1],menu:[d.Array,[]]}),this.override({label:\"Dropdown\"})}get is_split(){return this.split}}i.Dropdown=m,m.__name__=\"Dropdown\",m.init_Dropdown()},\n", - " 434: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1).__importStar(e(18)),s=e(472);class n extends s.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.properties.width.change,()=>this.render())}render(){null==this.dialogEl&&(this.dialogEl=document.createElement(\"input\"),this.dialogEl.type=\"file\",this.dialogEl.multiple=this.model.multiple,this.dialogEl.onchange=()=>{const{files:e}=this.dialogEl;null!=e&&this.load_files(e)},this.el.appendChild(this.dialogEl)),null!=this.model.accept&&\"\"!=this.model.accept&&(this.dialogEl.accept=this.model.accept),this.dialogEl.style.width=\"{this.model.width}px\",this.dialogEl.disabled=this.model.disabled}async load_files(e){const t=[],i=[],l=[];let s;for(s=0;s{const l=new FileReader;l.onload=()=>{var s;const{result:n}=l;null!=n?t(n):i(null!==(s=l.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},l.readAsDataURL(e)})}}i.FileInputView=n,n.__name__=\"FileInputView\";class o extends s.Widget{constructor(e){super(e)}static init_FileInput(){this.prototype.default_view=n,this.define({value:[l.Any,\"\"],mime_type:[l.Any,\"\"],filename:[l.Any,\"\"],accept:[l.String,\"\"],multiple:[l.Boolean,!1]})}}i.FileInput=o,o.__name__=\"FileInput\",o.init_FileInput()},\n", - " 435: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const i=e(1),n=e(72),l=e(8),o=i.__importStar(e(18)),c=e(410),r=e(412);class h extends c.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,()=>this.render_selection()),this.connect(this.model.properties.options.change,()=>this.render()),this.connect(this.model.properties.name.change,()=>this.render()),this.connect(this.model.properties.title.change,()=>this.render()),this.connect(this.model.properties.size.change,()=>this.render()),this.connect(this.model.properties.disabled.change,()=>this.render())}render(){super.render();const e=this.model.options.map(e=>{let t,s;return l.isString(e)?t=s=e:[t,s]=e,n.option({value:t},s)});this.select_el=n.select({multiple:!0,class:r.bk_input,name:this.model.name,disabled:this.model.disabled},e),this.select_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.select_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.select_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}s.MultiSelectView=h,h.__name__=\"MultiSelectView\";class d extends c.InputWidget{constructor(e){super(e)}static init_MultiSelect(){this.prototype.default_view=h,this.define({value:[o.Array,[]],options:[o.Array,[]],size:[o.Number,4]})}}s.MultiSelect=d,d.__name__=\"MultiSelect\",d.init_MultiSelect()},\n", - " 436: function _(a,e,r){Object.defineProperty(r,\"__esModule\",{value:!0});const t=a(430),p=a(72);class s extends t.MarkupView{render(){super.render();const a=p.p({style:{margin:0}},this.model.text);this.markup_el.appendChild(a)}}r.ParagraphView=s,s.__name__=\"ParagraphView\";class i extends t.Markup{constructor(a){super(a)}static init_Paragraph(){this.prototype.default_view=s}}r.Paragraph=i,i.__name__=\"Paragraph\",i.init_Paragraph()},\n", - " 437: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});const n=e(409);class r extends n.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}s.PasswordInputView=r,r.__name__=\"PasswordInputView\";class p extends n.TextInput{constructor(e){super(e)}static init_PasswordInput(){this.prototype.default_view=r}}s.PasswordInput=p,p.__name__=\"PasswordInput\",p.init_PasswordInput()},\n", - " 438: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const l=e(1),s=l.__importDefault(e(439)),o=e(72),n=e(8),h=e(217),a=l.__importStar(e(18)),c=e(412),u=l.__importDefault(e(440)),d=e(410);class _ extends d.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,()=>this.set_disabled());const{value:e,max_items:t,option_limit:i,delete_button:l,placeholder:s,options:o,name:n,title:h}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h],()=>this.render())}styles(){return[...super.styles(),u.default]}_update_layout(){this.layout=new h.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.select_el=o.select({multiple:!0,class:c.bk_input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.select_el);const e=new Set(this.model.value),t=this.model.options.map(t=>{let i,l;return n.isString(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}}),i=this.model.solid?\"solid\":\"light\",l=\"choices__item \"+i,h=\"choices__button \"+i,a={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:h}};null!=this.model.placeholder&&(a.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(a.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(a.renderChoiceLimit=this.model.option_limit),this.choice_el=new s.default(this.select_el,a);const u=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=u()&&this.root.invalidate_layout(),this._last_height=u(),this.select_el.addEventListener(\"change\",()=>this.change_input())}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.select_el.focus()}}i.MultiChoiceView=_,_.__name__=\"MultiChoiceView\";class r extends d.InputWidget{constructor(e){super(e)}static init_MultiChoice(){this.prototype.default_view=_,this.define({value:[a.Array,[]],options:[a.Array,[]],max_items:[a.Number,null],delete_button:[a.Boolean,!0],placeholder:[a.String,null],option_limit:[a.Number,null],solid:[a.Boolean,!0]})}}i.MultiChoice=r,r.__name__=\"MultiChoice\",r.init_MultiChoice()},\n", - " 439: function _(e,t,i){\n", - " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", - " var n,s;n=window,s=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", - " /*!\n", - " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", - " *\n", - " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", - " * All Rights Reserved. Apache Software License 2.0\n", - " *\n", - " * http://www.apache.org/licenses/LICENSE-2.0\n", - " */\n", - " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),\"select-one\"===this.type&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function oe(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function le(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},ve=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ge=function(e,t){return{type:$,id:e,highlighted:t}},_e=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},be=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function ye(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ge(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ge(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(ve(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(ve(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(ve(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(\"[data-choice-selectable]\");else{var p=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,\"[data-choice-selectable]\",d):this.dropdown.element.querySelector(\"[data-choice-selectable]\")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ee&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(_e({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(_e({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;rthis.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value}),this.connect(this.model.properties.low.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&(this.model.value=Math.max(e,t))}),this.connect(this.model.properties.high.change,()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&h.assert(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&(this.model.value=Math.min(e,l))}),this.connect(this.model.properties.high.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder)}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}})}render(){super.render(),this.input_el=u.input({type:\"text\",class:r.bk_input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.input_el.addEventListener(\"focusout\",()=>this.input_el.value=this.format_value),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter(e=>d.test(e)):\"float\"==this.model.mode&&this._set_input_filter(e=>p.test(e))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!==this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=_,_.__name__=\"NumericInputView\";class m extends s.InputWidget{constructor(e){super(e)}static init_NumericInput(){this.prototype.default_view=_,this.define({value:[o.Number,null],placeholder:[o.String,\"\"],mode:[o.Any,\"int\"],format:[o.Any],low:[o.Number,null],high:[o.Number,null]})}_formatter(e,t){return a.isString(t)?n.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):\"\"+e}}l.NumericInput=m,m.__name__=\"NumericInput\",m.init_NumericInput()},\n", - " 442: function _(t,_,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=t(1);e.__exportStar(t(13),r),e.__exportStar(t(9),r),e.__exportStar(t(29),r),e.__exportStar(t(443),r),e.__exportStar(t(8),r),e.__exportStar(t(25),r)},\n", - " 443: function _(e,t,s){Object.defineProperty(s,\"__esModule\",{value:!0});class n{constructor(e){this.seed=e%2147483647,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%2147483647,this.seed}float(){return(this.integer()-1)/2147483646}floats(e){const t=new Array(e);for(let s=0;s{n.classes(o).toggle(s.bk_active,t===e)})}}e.RadioButtonGroupView=_,_.__name__=\"RadioButtonGroupView\";class c extends a.ButtonGroup{constructor(t){super(t)}static init_RadioButtonGroup(){this.prototype.default_view=_,this.define({active:[u.Any,null]})}}e.RadioButtonGroup=c,c.__name__=\"RadioButtonGroup\",c.init_RadioButtonGroup()},\n", - " 446: function _(e,i,t){Object.defineProperty(t,\"__esModule\",{value:!0});const n=e(1),a=e(72),s=e(29),o=n.__importStar(e(18)),d=e(417),l=e(173),p=e(412);class r extends d.InputGroupView{render(){super.render();const e=a.div({class:[p.bk_input_group,this.model.inline?l.bk_inline:null]});this.el.appendChild(e);const i=s.uniqueId(),{active:t,labels:n}=this.model;this._inputs=[];for(let s=0;sthis.change_active(s)),this._inputs.push(o),this.model.disabled&&(o.disabled=!0),s==t&&(o.checked=!0);const d=a.label({},o,a.span({},n[s]));e.appendChild(d)}}change_active(e){this.model.active=e}}t.RadioGroupView=r,r.__name__=\"RadioGroupView\";class u extends d.InputGroup{constructor(e){super(e)}static init_RadioGroup(){this.prototype.default_view=r,this.define({active:[o.Number],labels:[o.Array,[]],inline:[o.Boolean,!1]})}}t.RadioGroup=u,u.__name__=\"RadioGroup\",u.init_RadioGroup()},\n", - " 447: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),a=e(423),n=e(8);class o extends a.AbstractRangeSliderView{}r.RangeSliderView=o,o.__name__=\"RangeSliderView\";class s extends a.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}static init_RangeSlider(){this.prototype.default_view=o,this.override({format:\"0[.]00\"})}_formatter(e,t){return n.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.RangeSlider=s,s.__name__=\"RangeSlider\",s.init_RangeSlider()},\n", - " 448: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(72),l=e(8),o=e(13),p=n.__importStar(e(18)),u=e(410),a=e(412);class _ extends u.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,()=>{this._update_value()}),this.on_change(t,()=>{s.empty(this.input_el),s.append(this.input_el,...this.options_el())})}options_el(){function e(e){return e.map(e=>{let t,i;return l.isString(e)?t=i=e:[t,i]=e,s.option({value:t},i)})}const{options:t}=this.model;return l.isArray(t)?e(t):o.entries(t).map(([t,i])=>s.optgroup({label:t},e(i)))}render(){super.render(),this.input_el=s.select({class:a.bk_input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;null!=e&&0!=e.length&&(this.input_el.value=this.model.value)}}i.SelectView=_,_.__name__=\"SelectView\";class h extends u.InputWidget{constructor(e){super(e)}static init_Select(){this.prototype.default_view=_,this.define({value:[p.String,\"\"],options:[p.Any,[]]})}}i.Select=h,h.__name__=\"Select\",h.init_Select()},\n", - " 449: function _(e,t,r){Object.defineProperty(r,\"__esModule\",{value:!0});const i=e(1).__importStar(e(188)),o=e(423),s=e(8);class _ extends o.AbstractSliderView{}r.SliderView=_,_.__name__=\"SliderView\";class a extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}static init_Slider(){this.prototype.default_view=_,this.override({format:\"0[.]00\"})}_formatter(e,t){return s.isString(t)?i.format(e,t):t.doFormat([e],{loc:0})[0]}}r.Slider=a,a.__name__=\"Slider\",a.init_Slider()},\n", - " 450: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const n=e(1),s=e(441),l=n.__importStar(e(18)),r=e(72),{min:o,max:_,floor:a,abs:h}=Math;function u(e){return a(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends s.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,()=>{for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled)})}render(){super.render(),this.wrapper_el=r.div({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=r.button({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=r.button({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())r.toggle_attribute(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",e=>this._btn_mouse_down(e)),e.addEventListener(\"mouseup\",()=>this._btn_mouse_up()),e.addEventListener(\"mouseleave\",()=>this._btn_mouse_leave());this.input_el.addEventListener(\"keydown\",e=>this._input_key_down(e)),this.input_el.addEventListener(\"keyup\",()=>this.model.value_throttled=this.model.value),this.input_el.addEventListener(\"wheel\",e=>this._input_mouse_wheel(e)),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,r=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),r&&e.apply(l,s)}}(()=>{this.model.value_throttled=this.model.value},this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model;return _(...[e,t,i].map(h).reduce((e,t)=>(null!=t&&e.push(t),e),[]).map(u))}_start_incrementation(e){clearInterval(this._interval_handle),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(e),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._interval_handle),this._interval_handle=setInterval(()=>i(2*e),this._interval/10))}this.increment(e)};this._interval_handle=setInterval(()=>i(e*t),this._interval)}_stop_incrementation(){clearInterval(this._interval_handle),this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._start_incrementation(t)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?o(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?_(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class d extends s.NumericInput{constructor(e){super(e)}static init_Spinner(){this.prototype.default_view=p,this.define({value_throttled:[l.Number,null],step:[l.Number,1],page_step_multiplier:[l.Number,10],wheel_wait:[l.Number,100]}),this.override({mode:\"float\"})}}i.Spinner=d,d.__name__=\"Spinner\",d.init_Spinner()},\n", - " 451: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),n=e(410),l=e(72),h=s.__importStar(e(18)),o=e(412);class a extends n.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,()=>this.input_el.name=this.model.name||\"\"),this.connect(this.model.properties.value.change,()=>this.input_el.value=this.model.value),this.connect(this.model.properties.disabled.change,()=>this.input_el.disabled=this.model.disabled),this.connect(this.model.properties.placeholder.change,()=>this.input_el.placeholder=this.model.placeholder),this.connect(this.model.properties.rows.change,()=>this.input_el.rows=this.model.rows),this.connect(this.model.properties.cols.change,()=>this.input_el.cols=this.model.cols),this.connect(this.model.properties.max_length.change,()=>this.input_el.maxLength=this.model.max_length)}render(){super.render(),this.input_el=l.textarea({class:o.bk_input,name:this.model.name,disabled:this.model.disabled,placeholder:this.model.placeholder,cols:this.model.cols,rows:this.model.rows,maxLength:this.model.max_length}),this.input_el.textContent=this.model.value,this.input_el.addEventListener(\"change\",()=>this.change_input()),this.group_el.appendChild(this.input_el)}change_input(){this.model.value=this.input_el.value,super.change_input()}}i.TextAreaInputView=a,a.__name__=\"TextAreaInputView\";class p extends n.InputWidget{constructor(e){super(e)}static init_TextAreaInput(){this.prototype.default_view=a,this.define({value:[h.String,\"\"],value_input:[h.String,\"\"],placeholder:[h.String,\"\"],cols:[h.Number,20],rows:[h.Number,2],max_length:[h.Number,500]})}}i.TextAreaInput=p,p.__name__=\"TextAreaInput\",p.init_TextAreaInput()},\n", - " 452: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),c=e(404),o=e(72),a=s.__importStar(e(18)),n=e(173);class l extends c.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,()=>this._update_active())}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){o.classes(this.button_el).toggle(n.bk_active,this.model.active)}}i.ToggleView=l,l.__name__=\"ToggleView\";class _ extends c.AbstractButton{constructor(e){super(e)}static init_Toggle(){this.prototype.default_view=l,this.define({active:[a.Boolean,!1]}),this.override({label:\"Toggle\"})}}i.Toggle=_,_.__name__=\"Toggle\",_.init_Toggle()},\n", - " }, 402, {\"models/widgets/main\":402,\"models/widgets/index\":403,\"models/widgets/abstract_button\":404,\"models/widgets/control\":405,\"models/widgets/widget\":472,\"models/widgets/abstract_icon\":407,\"models/widgets/autocomplete_input\":408,\"models/widgets/text_input\":409,\"models/widgets/input_widget\":410,\"styles/widgets/inputs.css\":411,\"styles/widgets/inputs\":412,\"models/widgets/button\":413,\"models/widgets/checkbox_button_group\":414,\"models/widgets/button_group\":415,\"models/widgets/checkbox_group\":416,\"models/widgets/input_group\":417,\"models/widgets/color_picker\":418,\"models/widgets/date_picker\":419,\"styles/widgets/flatpickr.css\":421,\"models/widgets/date_range_slider\":422,\"models/widgets/abstract_slider\":423,\"styles/widgets/sliders\":425,\"styles/widgets/nouislider.css\":426,\"styles/widgets/sliders.css\":427,\"models/widgets/date_slider\":428,\"models/widgets/div\":429,\"models/widgets/markup\":430,\"styles/clearfix\":431,\"styles/clearfix.css\":432,\"models/widgets/dropdown\":433,\"models/widgets/file_input\":434,\"models/widgets/multiselect\":435,\"models/widgets/paragraph\":436,\"models/widgets/password_input\":437,\"models/widgets/multichoice\":438,\"styles/widgets/choices.css\":440,\"models/widgets/numeric_input\":441,\"api/linalg\":442,\"core/util/random\":443,\"models/widgets/pretext\":444,\"models/widgets/radio_button_group\":445,\"models/widgets/radio_group\":446,\"models/widgets/range_slider\":447,\"models/widgets/selectbox\":448,\"models/widgets/slider\":449,\"models/widgets/spinner\":450,\"models/widgets/textarea_input\":451,\"models/widgets/toggle\":452}, {});\n", - " })\n", - "\n", - "\n", - " /* END bokeh-widgets.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-tables.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.2.2\");\n", - " })(this, function(Bokeh, version) {\n", - " var define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 453: function _(e,t,o){Object.defineProperty(o,\"__esModule\",{value:!0});const r=e(1).__importStar(e(454));o.Tables=r;e(7).register_models(r)},\n", - " 454: function _(a,g,r){Object.defineProperty(r,\"__esModule\",{value:!0});const e=a(1);e.__exportStar(a(455),r),e.__exportStar(a(475),r);var t=a(456);r.DataTable=t.DataTable;var o=a(474);r.TableColumn=o.TableColumn;var n=a(473);r.TableWidget=n.TableWidget;var u=a(481);r.AvgAggregator=u.AvgAggregator,r.MinAggregator=u.MinAggregator,r.MaxAggregator=u.MaxAggregator,r.SumAggregator=u.SumAggregator;var l=a(482);r.GroupingInfo=l.GroupingInfo,r.DataCube=l.DataCube},\n", - " 455: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1).__importStar(e(18)),r=e(72),a=e(78),n=e(81),l=e(456),u=e(478);class d extends a.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(u.bk_cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",e=>{switch(e.keyCode){case r.Keys.Left:case r.Keys.Right:case r.Keys.Up:case r.Keys.Down:case r.Keys.PageUp:case r.Keys.PageDown:e.stopImmediatePropagation()}})}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[l.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=d,d.__name__=\"CellEditorView\";class o extends n.Model{}i.CellEditor=o,o.__name__=\"CellEditor\";class _ extends d{get emptyValue(){return\"\"}_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=_,_.__name__=\"StringEditorView\";class c extends o{static init_StringEditor(){this.prototype.default_view=_,this.define({completions:[s.Array,[]]})}}i.StringEditor=c,c.__name__=\"StringEditor\",c.init_StringEditor();class p extends d{_createInput(){return r.textarea()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=p,p.__name__=\"TextEditorView\";class h extends o{static init_TextEditor(){this.prototype.default_view=p}}i.TextEditor=h,h.__name__=\"TextEditor\",h.init_TextEditor();class E extends d{_createInput(){return r.select()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild(r.option({value:e},e));this.focus()}}i.SelectEditorView=E,E.__name__=\"SelectEditorView\";class V extends o{static init_SelectEditor(){this.prototype.default_view=E,this.define({options:[s.Array,[]]})}}i.SelectEditor=V,V.__name__=\"SelectEditor\",V.init_SelectEditor();class m extends d{_createInput(){return r.input({type:\"text\"})}}i.PercentEditorView=m,m.__name__=\"PercentEditorView\";class f extends o{static init_PercentEditor(){this.prototype.default_view=m}}i.PercentEditor=f,f.__name__=\"PercentEditor\",f.init_PercentEditor();class x extends d{_createInput(){return r.input({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=x,x.__name__=\"CheckboxEditorView\";class w extends o{static init_CheckboxEditor(){this.prototype.default_view=x}}i.CheckboxEditor=w,w.__name__=\"CheckboxEditor\",w.init_CheckboxEditor();class g extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseInt(this.getValue(),10)||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=g,g.__name__=\"IntEditorView\";class y extends o{static init_IntEditor(){this.prototype.default_view=g,this.define({step:[s.Number,1]})}}i.IntEditor=y,y.__name__=\"IntEditor\",y.init_IntEditor();class v extends d{_createInput(){return r.input({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){return parseFloat(this.getValue())||0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=v,v.__name__=\"NumberEditorView\";class b extends o{static init_NumberEditor(){this.prototype.default_view=v,this.define({step:[s.Number,.01]})}}i.NumberEditor=b,b.__name__=\"NumberEditor\",b.init_NumberEditor();class I extends d{_createInput(){return r.input({type:\"text\"})}}i.TimeEditorView=I,I.__name__=\"TimeEditorView\";class N extends o{static init_TimeEditor(){this.prototype.default_view=I}}i.TimeEditor=N,N.__name__=\"TimeEditor\",N.init_TimeEditor();class C extends d{_createInput(){return r.input({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=C,C.__name__=\"DateEditorView\";class D extends o{static init_DateEditor(){this.prototype.default_view=C}}i.DateEditor=D,D.__name__=\"DateEditor\",D.init_DateEditor()},\n", - " 456: function _(e,t,i){Object.defineProperty(i,\"__esModule\",{value:!0});const s=e(1),o=e(457),n=e(461),l=e(462),r=e(463),d=e(29),a=e(8),h=e(9),u=e(13),c=e(19),_=e(472),m=e(473),g=e(474),p=e(478),f=s.__importDefault(e(479)),b=s.__importDefault(e(480));i.DTINDEX_NAME=\"__bkdt_internal_index__\",i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};class w{constructor(e,t){this.init(e,t)}init(e,t){if(i.DTINDEX_NAME in e.data)throw new Error(`special name ${i.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of u.keys(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[i.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==i.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return h.range(0,this.getLength()).map(e=>this.getItem(e))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,h.range(e,t,i).map(e=>this.getItem(e))}sort(e){let t=e.map(e=>[e.sortCol.field,e.sortAsc?1:-1]);0==t.length&&(t=[[i.DTINDEX_NAME,1]]);const s=this.getRecords(),o=this.index.slice();this.index.sort((e,i)=>{for(const[n,l]of t){const t=s[o.indexOf(e)][n],r=s[o.indexOf(i)][n];if(t!==r)return a.isNumber(t)&&a.isNumber(r)?l*(t-r||+isNaN(t)-+isNaN(r)):\"\"+t>\"\"+r?l:-l}return 0})}}i.TableDataProvider=w,w.__name__=\"TableDataProvider\";class x extends _.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._warned_not_reorderable=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,()=>this.render()),this.connect(this.model.source.streaming,()=>this.updateGrid()),this.connect(this.model.source.patching,()=>this.updateGrid()),this.connect(this.model.source.change,()=>this.updateGrid()),this.connect(this.model.source.properties.data.change,()=>this.updateGrid()),this.connect(this.model.source.selected.change,()=>this.updateSelection()),this.connect(this.model.source.selected.properties.indices.change,()=>this.updateSelection())}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),f.default,b.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map(t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc}));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map(e=>this.data.index.indexOf(e)).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:d.uniqueId(),name:this.model.index_header,field:i.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:p.bk_cell_index,headerCssClass:p.bk_header_index}}css_classes(){return super.css_classes().concat(p.bk_data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.map(e=>Object.assign(Object.assign({},e.toColumn()),{parent:this}));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new n.CheckboxSelectColumn({cssClass:p.bk_cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:d}=this.model;!d||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(this._warned_not_reorderable||(c.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),this._warned_not_reorderable=!0),d=!1);let h=-1,u=!1;const{frozen_rows:_,frozen_columns:m}=this.model,g=null==m?-1:m-1;null!=_&&(u=_<0,h=Math.abs(_));const f={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:d,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:g,frozenRow:h,frozenBottom:u},b=null!=this.grid;if(this.data=new w(this.model.source,this.model.view),this.grid=new r.Grid(this.el,this.data,t,f),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))}),!1!==this.model.selectable){this.grid.setSelectionModel(new o.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return a.isString(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new l.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map(e=>this.data.index[e]))}),this.updateSelection(),this.model.header_row||this._hide_header()}b&&this.updateLayout(b,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=x,x.__name__=\"DataTableView\";class C extends m.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}static init_DataTable(){this.prototype.default_view=x,this.define(({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Null:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(g.TableColumn)),[]],fit_columns:[l(t,r),null],frozen_columns:[l(i,r),null],frozen_rows:[l(i,r),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[l(i,r),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]})),this.override({width:600,height:400})}update_sort_columns(e){this._sort_columns=e.map(({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t}))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?h.some(t,t=>e.top<=t&&t<=e.bottom)?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=C,C.__name__=\"DataTable\",C.init_DataTable()},\n", - " 457: function _(e,t,n){var o=e(458),r=e(460);t.exports={RowSelectionModel:function(e){var t,n,l,i=[],c=this,u=new r.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&l0&&t-1 in e)}b.fn=b.prototype={jquery:\"3.5.1\",constructor:b,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+M+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"�\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(j=O.call(w.childNodes),w.childNodes),j[w.childNodes.length].nodeType}catch(e){H={apply:j.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[\"+M+\"*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[\"+M+\"*name\"+M+\"*=\"+M+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name\"+M+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|\"+M+\")\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);b.find=T,b.expr=T.selectors,b.expr[\":\"]=b.expr.pseudos,b.uniqueSort=b.unique=T.uniqueSort,b.text=T.getText,b.isXMLDoc=T.isXML,b.contains=T.contains,b.escapeSelector=T.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&b(e).is(n))break;r.push(e)}return r},E=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function k(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function N(e,t,n){return h(t)?b.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?b.grep(e,(function(e){return s.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?b.find.matchesSelector(r,e)?[r]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,\"string\"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var D,j=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(b.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),A.test(r[1])&&b.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,D=b(v);var q=/^(?:parents|prev(?:Until|All))/,L={children:!0,contents:!0,next:!0,prev:!0};function H(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&b.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?b.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(b(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,\"parentNode\")},parentsUntil:function(e,t,n){return C(e,\"parentNode\",n)},next:function(e){return H(e,\"nextSibling\")},prev:function(e){return H(e,\"previousSibling\")},nextAll:function(e){return C(e,\"nextSibling\")},prevAll:function(e){return C(e,\"previousSibling\")},nextUntil:function(e,t,n){return C(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return C(e,\"previousSibling\",n)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(k(e,\"template\")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=b.filter(r,i)),this.length>1&&(L[e]||b.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var O=/[^\\x20\\t\\r\\n\\f]+/g;function P(e){return e}function R(e){throw e}function M(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return b.each(e.match(O)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?b.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},b.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",b.Callbacks(\"memory\"),b.Callbacks(\"memory\"),2],[\"resolve\",\"done\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(t){b.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==R&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(b.Deferred.getStackHook&&(c.stackTrace=b.Deferred.getStackHook()),e.setTimeout(c))}}return b.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:P,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:P)),n[2][3].add(a(0,e,h(r)?r:R))})).promise()},promise:function(e){return null!=e?b.extend(e,i):i}},o={};return b.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=b.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(M(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)M(o[n],s(n),a.reject);return a.promise()}});var I=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&I.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},b.readyException=function(t){e.setTimeout((function(){throw t}))};var W=b.Deferred();function F(){v.removeEventListener(\"DOMContentLoaded\",F),e.removeEventListener(\"load\",F),b.ready()}b.fn.ready=function(e){return W.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&--b.readyWait>0||W.resolveWith(v,[b]))}}),b.ready.then=W.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(b.ready):(v.addEventListener(\"DOMContentLoaded\",F),e.addEventListener(\"load\",F));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Y.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,b.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){b.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return G.get(e,n)||G.access(e,n,{empty:b.Callbacks(\"once memory\").add((function(){G.remove(e,[t+\"queue\",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,he=/^$|^module$|\\/(?:java|ecma)script/i;ce=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(fe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),fe.setAttribute(\"checked\",\"checked\"),fe.setAttribute(\"name\",\"t\"),ce.appendChild(fe),d.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML=\"\",d.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=\"\",d.option=!!ce.lastChild;var ge={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&k(e,t)?b.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n\",\"\"]);var me=/<|&#?\\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=re(o),a=ve(f.appendChild(o),\"script\"),l&&ye(a),n)for(c=0;o=a[c++];)he.test(o.type||\"\")&&n.push(o);return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function ke(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return b().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=b.guid++)),e.each((function(){b.event.add(this,t,i,r,n)}))}function Ae(e,t,n){n?(G.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=G.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),G.set(this,t,a),r=n(this,t),this[t](),a!==(o=G.get(this,t))||r?G.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o.value}else a.length&&(G.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&b.event.add(e,t,Ce)}b.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&b.find.matchesSelector(ne,i),n.guid||(n.guid=b.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=b.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=b.event.special[d]||{},c=b.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&b.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),b.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=G.hasData(e)&&G.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(O)||[\"\"]).length;l--;)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=b.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||b.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(u)&&G.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=b.event.fix(e),l=(G.get(this,\"events\")||Object.create(null))[u.type]||[],c=b.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:b.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function qe(e,t){return k(e,\"table\")&&k(11!==t.nodeType?t:t.firstChild,\"tr\")&&b(e).children(\"tbody\")[0]||e}function Le(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function He(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(G.hasData(e)&&(s=G.get(e).events))for(i in G.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&De.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)}));if(p&&(a=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=b.map(ve(i,\"script\"),Le)).length;f0&&ye(a,!u&&ve(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=b.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?b.event.remove(n,r):b.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[Y.expando]&&(n[Y.expando]=void 0)}}}),b.fn.extend({detach:function(e){return Me(this,e,!0)},remove:function(e){return Me(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n3,ne.removeChild(t)),s}}))}();var ze=[\"Webkit\",\"Moz\",\"ms\"],Ue=v.createElement(\"div\").style,Xe={};function Ve(e){var t=b.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=ze.length;n--;)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye=/^--/,Qe={position:\"absolute\",visibility:\"hidden\",display:\"block\"},Je={letterSpacing:\"0\",fontWeight:\"400\"};function Ke(e,t,n){var r=ee.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||\"px\"):t}function Ze(e,t,n,r,i,o){var a=\"width\"===t?1:0,s=0,u=0;if(n===(r?\"border\":\"content\"))return 0;for(;a<4;a+=2)\"margin\"===n&&(u+=b.css(e,n+te[a],!0,i)),r?(\"content\"===n&&(u-=b.css(e,\"padding\"+te[a],!0,i)),\"margin\"!==n&&(u-=b.css(e,\"border\"+te[a]+\"Width\",!0,i))):(u+=b.css(e,\"padding\"+te[a],!0,i),\"padding\"!==n?u+=b.css(e,\"border\"+te[a]+\"Width\",!0,i):s+=b.css(e,\"border\"+te[a]+\"Width\",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function et(e,t,n){var r=We(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===b.css(e,\"boxSizing\",!1,r),o=i,a=$e(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Ie.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&k(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===b.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===b.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ze(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=U(t),u=Ye.test(t),l=e.style;if(u||(t=Ve(s)),a=b.cssHooks[t]||b.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=ee.exec(n))&&i[1]&&(n=ae(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(b.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=U(t);return Ye.test(t)||(t=Ve(s)),(a=b.cssHooks[t]||b.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),\"normal\"===i&&t in Je&&(i=Je[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),b.each([\"height\",\"width\"],(function(e,t){b.cssHooks[t]={get:function(e,n,r){if(n)return!Ge.test(b.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):Fe(e,Qe,(function(){return et(e,t,r)}))},set:function(e,n,r){var i,o=We(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===b.css(e,\"boxSizing\",!1,o),u=r?Ze(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,\"border\",!1,o)-.5)),u&&(i=ee.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=b.css(e,t)),Ke(0,n,u)}}})),b.cssHooks.marginLeft=_e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,\"marginLeft\"))||e.getBoundingClientRect().left-Fe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),b.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+te[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(b.cssHooks[e+t].set=Ke)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a1)}}),b.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?\"\":\"px\")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},b.fx=tt.prototype.init,b.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,b.fx.interval),b.fx.tick())}function st(){return e.setTimeout((function(){nt=void 0})),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=te[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(ct.tweeners[t]||[]).concat(ct.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?b.prop(e,t,n):(1===o&&b.isXMLDoc(e)||(i=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=b.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&k(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(O);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=pt[t]||b.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function gt(e){return(e.match(O)||[]).join(\" \")}function vt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function yt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(O)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&b.isXMLDoc(e)||(t=b.propFix[t]||t,i=b.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,\"tabindex\");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&\" \"+gt(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=gt(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=b(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=vt(this))&&G.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":G.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+gt(vt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var mt=/\\r/g;b.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,b(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=b.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=b.valHooks[i.type]||b.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(mt,\"\"):null==n?\"\":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,\"value\");return null!=t?t:gt(b.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),b.each([\"radio\",\"checkbox\"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},d.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var xt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+b.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[b.expando]?t:new b.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:b.makeArray(n,[t]),p=b.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(G.get(a,\"events\")||Object.create(null))[t.type]&&G.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&X(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!X(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),b.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,bt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,bt),b.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(r,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),d.focusin||b.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var wt=e.location,Tt={guid:Date.now()},Ct=/\\?/;b.parseXML=function(t){var n;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){n=void 0}return n&&!n.getElementsByTagName(\"parsererror\").length||b.error(\"Invalid XML: \"+t),n};var Et=/\\[\\]$/,St=/\\r?\\n/g,kt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function Nt(e,t,n,r){var i;if(Array.isArray(t))b.each(t,(function(t,i){n||Et.test(e)?r(e,i):Nt(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)Nt(e+\"[\"+i+\"]\",t[i],n,r)}b.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){i(this.name,this.value)}));else for(n in e)Nt(n,e[n],t,i);return r.join(\"&\")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,\"elements\");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(\":disabled\")&&At.test(this.nodeName)&&!kt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,\"\\r\\n\")}})):{name:t.name,value:n.replace(St,\"\\r\\n\")}})).get()}});var Dt=/%20/g,jt=/#.*$/,qt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Ht=/^(?:GET|HEAD)$/,Ot=/^\\/\\//,Pt={},Rt={},Mt=\"*/\".concat(\"*\"),It=v.createElement(\"a\");function Wt(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(O)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Ft(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,b.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Bt(e,t){var n,r,i=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&b.extend(!0,e,r),e}It.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Mt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Wt(Pt),ajaxTransport:Wt(Rt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=b.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?b(h):b.event,y=b.Deferred(),m=b.Callbacks(\"once memory\"),x=d.statusCode||{},w={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||wt.href)+\"\").replace(Ot,wt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(O)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=It.protocol+\"//\"+It.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=b.param(d.data,d.traditional)),Ft(Pt,d,n,E),l)return E;for(f in(c=b.event&&d.global)&&0==b.active++&&b.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Ht.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Dt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Ct.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(qt,\"$1\"),p=(Ct.test(i)?\"&\":\"?\")+\"_=\"+Tt.guid+++p),d.url=i+p),d.ifModified&&(b.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",b.lastModified[i]),b.etag[i]&&E.setRequestHeader(\"If-None-Match\",b.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Mt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Ft(Rt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(w,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,w,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&b.inArray(\"script\",d.dataTypes)>-1&&(d.converters[\"text script\"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,w,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(b.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(b.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=w.state,p=w.data,f=!(v=w.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--b.active||b.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return b.get(e,t,n,\"json\")},getScript:function(e,t){return b.get(e,void 0,t,\"script\")}}),b.each([\"get\",\"post\"],(function(e,t){b[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:i,data:n,success:r},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},_t=b.ajaxSettings.xhr();d.cors=!!_t&&\"withCredentials\"in _t,d.ajax=_t=!!_t,b.ajaxTransport((function(t){var n,r;if(d.cors||_t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),b.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=b(\"" - ], - "text/plain": [ - ":Layout\n", - " .Curve.I :Curve [t_source] (nll)\n", - " .Curve.II :Curve [hours ahead] (nll)\n", - " .DynamicMap.I :DynamicMap []\n", - " :RGB [true,pred] (R,G,B,A)" - ] - }, - "execution_count": 41, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "1443" - } - }, - "output_type": "execute_result" - } - ], - "source": [ - "# A few diagnostic plots\n", - "d_source = ds_predss.mean(['t_ahead',\n", - " 'block'])['nll'].groupby('t_source').mean()\n", - "nll_vs_time = (hv.Curve(d_source).opts(width=600,\n", - " height=200,\n", - " title='Error vs time of prediction'))\n", - "\n", - "d_ahead = ds_predss.mean(['t_source',\n", - " 'block'])['nll'].groupby('t_ahead_hours').mean()\n", - "nll_vs_tahead = (hv.Curve(\n", - " (d_ahead.t_ahead_hours,\n", - " d_ahead)).redim(x='hours ahead',\n", - " y='nll').opts(width=600,\n", - " height=200,\n", - " title='Error vs time ahead'))\n", - "\n", - "true_vs_pred = datashade(hv.Scatter(\n", - " (ds_predss.y_true,\n", - " ds_predss.y_pred))).redim(x='true', y='pred').opts(title='Scatter plot')\n", - "true_vs_pred = dynspread(true_vs_pred)\n", - "\n", - "l = nll_vs_time + nll_vs_tahead + true_vs_pred\n", - "l.cols(1).opts(\n", - " framewise=True,\n", - " shared_axes=False,\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T01:48:05.588077Z", - "start_time": "2020-10-24T01:48:04.798080Z" - }, - "scrolled": false - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/bokeh/core/property/bases.py:241: DeprecationWarning: elementwise comparison failed; this will raise an error in the future.\n", - " return new == old\n" - ] - }, - { - "data": {}, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.holoviews_exec.v0+json": "", - "text/html": [ - "
\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - "
\n", - "" - ], - "text/plain": [ - ":DynamicMap [t_source]\n", - " :Overlay\n", - " .Scatter.True :Scatter [x] (y)\n", - " .Curve.Pred :Curve [x] (y)\n", - " .Area.A_2_times_std :Area [x] (y,y2)\n", - " .VLine.Now :VLine [x,y]" - ] - }, - "execution_count": 42, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "2233" - } - }, - "output_type": "execute_result" - } - ], - "source": [ - "def hv_predict_from_time(t_source):\n", - " \"\"\"Plot predictions with holoviews\"\"\"\n", - "\n", - " # Let us pass in an int\n", - " if isinstance(t_source, int):\n", - " t_source = ds_pred_block.t_source[t_source].to_pandas()\n", - "\n", - " d = ds_pred_block.sel(t_source=t_source)\n", - "\n", - " # Sometimes there are duplicate times, take the first\n", - " if len(d.t_source.shape) and d.t_source.shape[0] > 0:\n", - " d = d.isel(t_source=0)\n", - " if len(d.t_source.shape) and d.t_source.shape[0] == 0:\n", - " return None\n", - "\n", - " now = d.t_source.to_pandas()\n", - "\n", - " # Plot true\n", - " x = np.concatenate([d.t_past, d.t_target])\n", - " yt = np.concatenate([d.y_past, d.y_true])\n", - " p = hv.Scatter({\n", - " 'x': x,\n", - " 'y': yt\n", - " }, label='true').opts(color='black')\n", - "\n", - " # Get arrays\n", - " xf = d.t_target.values\n", - " yp = d.y_pred\n", - " s = d.y_pred_std\n", - " p *= hv.Curve({\n", - " 'x': xf,\n", - " 'y': yp\n", - " }, label='pred').opts(color='blue')\n", - " p *= hv.Area((xf, yp - 2 * s, yp + 2 * s),\n", - " vdims=['y', 'y2'],\n", - " label='2*std').opts(alpha=0.5, line_width=0)\n", - "\n", - " # plot now line\n", - " p *= hv.VLine(now, label='now').opts(color='red', framewise=True)\n", - " return p.opts(title=f'Prediction at {now}. NLL={d.nll.mean().item():2.2f}')\n", - "\n", - "\n", - "dmap_hv_predict_from_time = (hv.DynamicMap(hv_predict_from_time, kdims=['t_source'])\n", - " .redim.values(t_source=ds_pred_block.t_source.to_pandas())\n", - " .opts(width=800,\n", - " height=300, \n", - " ))\n", - "dmap_hv_predict_from_time" - ] - }, - { - "cell_type": "code", - "execution_count": 132, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T12:09:50.207227Z", - "start_time": "2020-10-24T12:09:49.777464Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/ipykernel/ipkernel.py:287: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.\n", - " and should_run_async(code)\n", - "/home/wassname/anaconda/envs/seq2seq-time/lib/python3.7/site-packages/bokeh/core/property/bases.py:241: DeprecationWarning: elementwise comparison failed; this will raise an error in the future.\n", - " return new == old\n" - ] - }, - { - "data": {}, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.holoviews_exec.v0+json": "", - "text/html": [ - "
\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - "
\n", - "" - ], - "text/plain": [ - ":Overlay\n", - " .Scatter.True :Scatter [x] (y)\n", - " .Curve.Pred :Curve [x] (y)\n", - " .Spread.A_2_times_std :Spread [x] (y,yerror)" - ] - }, - "execution_count": 132, - "metadata": { - "application/vnd.holoviews_exec.v0+json": { - "id": "23645" - } - }, - "output_type": "execute_result" - } - ], - "source": [ - "def hv_plot_predictions_vs_time(it_ahead=6,\n", - " std=False,\n", - " ds_pred_block=ds_pred_block):\n", - " \"\"\"Plot predictions vs time with holoviews\"\"\"\n", - "\n", - " d = ds_pred_block.isel(t_ahead=it_ahead).groupby('t_source').first()\n", - "\n", - " p = hv.Scatter({\n", - " 'x': d.t_source,\n", - " 'y': d.y_true\n", - " }, label='true').opts(color='black', size=2)\n", - "\n", - " # Get arrays\n", - " xf = d.t_source.values\n", - " yp = d.y_pred\n", - " s = d.y_pred_std\n", - "\n", - " # Mean \n", - " p *= hv.Curve({'x': xf, 'y': yp}, label='pred').opts(color='blue')\n", - " if std:\n", - " p *= hv.Spread((xf, yp, s*2),\n", - " label='2*std').opts(alpha=0.5, line_width=0)\n", - " else:\n", - " p = datashade(p)\n", - "\n", - " title = f'Prediction at {it_ahead * pd.Timedelta(freq)} ahead. NLL={d.nll.mean().item():2.2f}'\n", - " return p.opts(\n", - " title=title,\n", - " width=800,\n", - " height=300,\n", - " tools=['xwheel_zoom'],\n", - " active_tools=['xwheel_zoom', 'pan'],\n", - " )\n", - "\n", - "\n", - "p = hv_plot_predictions_vs_time(\n", - " 6, std=True, ds_pred_block=ds_pred_block.isel(t_source=slice(100, 4000)))\n", - "p" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-24T12:08:20.455004Z", - "start_time": "2020-10-24T12:08:20.265440Z" - } - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Summarize experiments" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# LR finder" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "ExecuteTime": { - "end_time": "2020-10-23T01:57:08.890599Z", - "start_time": "2020-10-22T23:52:07.200Z" - }, - "lines_to_next_cell": 0 - }, - "outputs": [], - "source": [ - "\n", - "# # Run learning rate finder\n", - "# lr_finder = trainer.tuner.lr_find(model)\n", - "\n", - "# # Results can be found in\n", - "# lr_finder.results\n", - "\n", - "# # Plot with\n", - "# fig = lr_finder.plot(suggest=True)\n", - "# fig.show()\n", - "\n", - "# # Pick point based on plot, or get suggestion\n", - "# new_lr = lr_finder.suggestion()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "lines_to_next_cell": 2 - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "jupytext": { - "encoding": "# -*- coding: utf-8 -*-", - "formats": "ipynb,py:light" - }, - "kernelspec": { - "display_name": "seq2seq-time", - "language": "python", - "name": "seq2seq-time" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.8" - }, - "toc": { - "base_numbering": 1, - "nav_menu": {}, - "number_sections": true, - "sideBar": true, - "skip_h1_title": false, - "title_cell": "Table of Contents", - "title_sidebar": "Contents", - "toc_cell": false, - "toc_position": { - "height": "calc(100% - 180px)", - "left": "10px", - "top": "150px", - "width": "307.2px" - }, - "toc_section_display": true, - "toc_window_display": true - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.py b/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.py deleted file mode 100644 index 60f21e6..0000000 --- a/notebooks/03.0-mike-RNN_Timeseries_Seq2Seq.py +++ /dev/null @@ -1,805 +0,0 @@ -# -*- coding: utf-8 -*- -# --- -# jupyter: -# jupytext: -# formats: ipynb,py:light -# text_representation: -# extension: .py -# format_name: light -# format_version: '1.5' -# jupytext_version: 1.6.0 -# kernelspec: -# display_name: seq2seq-time -# language: python -# name: seq2seq-time -# --- - -# # Sequence to Sequence Models for Timeseries Regression -# -# -# In this notebook we are going to tackle a harder problem: -# - predicting the future on a timeseries -# - using an LSTM -# - with rough uncertainty (uncalibrated) -# - outputing sequence of predictions -# -# -# -# -# https://medium.com/@boitemailjeanmid/smart-meters-in-london-part1-description-and-first-insights-jean-michel-d-db97af2de71b -# - -# OPTIONAL: Load the "autoreload" extension so that code can change. But blacklist large modules -# %load_ext autoreload -# %autoreload 2 -# %aimport -pandas -# %aimport -torch -# %aimport -numpy -# %aimport -matplotlib -# %aimport -dask -# %aimport -tqdm -# %matplotlib inline - -# + -# Imports -import torch -from torch import nn, optim -from torch.nn import functional as F -from torch.autograd import Variable -import torch -import torch.utils.data - -import pandas as pd -import numpy as np -import matplotlib.pyplot as plt -plt.rcParams['figure.figsize'] = (12.0, 3.0) -plt.style.use('ggplot') - -from pathlib import Path -from tqdm.auto import tqdm - -import pytorch_lightning as pl -# - - -import warnings -warnings.simplefilter('once') - -from seq2seq_time.data.dataset import Seq2SeqDataSet, Seq2SeqDataSets -from seq2seq_time.predict import predict, predict_multi - -import logging, sys -# logging.basicConfig(stream=sys.stdout, level=logging.INFO) - -# ## Parameters - -# + -device = "cuda" if torch.cuda.is_available() else "cpu" -print(f'using {device}') - -columns_target=['energy(kWh/hh)'] -window_past = 48*2 -window_future = 48*2 -batch_size = 128 -num_workers = 5 -freq = '30T' -max_rows = 5e5 - - -# - - -# ## Load data - -# + - -def get_smartmeter_df(indir=Path('../data/raw/smart-meters-in-london'), max_files=8): - """ - Data loading and cleanding is always messy, so understand this code is optional. - """ - - # Load csv files - csv_files = sorted((indir/'halfhourly_dataset').glob('*.csv'))[:max_files] - - dfs = [] - for f in csv_files: - df = (pd.read_csv(f, parse_dates=[1], na_values=['Null']) - .groupby('tstp') - .sum() - .sort_index() - ) - df['block'] = f.stem - - # Drop nan and 0's - df = df[df['energy(kWh/hh)']!=0] - df = df.dropna() - - # Add time features - time = df.index.to_series() - df["month"] = time.dt.month - df['day'] = time.dt.day - df['week'] = time.dt.week - df['hour'] = time.dt.hour - df['minute'] = time.dt.minute - df['dayofweek'] = time.dt.dayofweek - - # Load weather data - df_weather = pd.read_csv(indir/'weather_hourly_darksky.csv', parse_dates=[3]) - use_cols = ['visibility', 'windBearing', 'temperature', 'time', 'dewPoint', - 'pressure', 'apparentTemperature', 'windSpeed', - 'humidity'] - df_weather = df_weather[use_cols].set_index('time') - - # Resample to match energy data - # Use first, since we have bearing, and you can't take mean - df_weather = df_weather.resample(freq).first().ffill() - - # Join weather and energy data - df = pd.merge(df, df_weather, how='inner', left_index=True, right_index=True, sort=True) - - # Holidays - df_hols = pd.read_csv(indir/'uk_bank_holidays.csv', parse_dates=[0]) - holidays = set(df_hols['Bank holidays'].dt.round('D')) - def is_holiday(dt): - return dt in holidays - days = df.index.floor('D') - holiday_mapping = days.unique().to_series().apply(is_holiday).astype(int).to_dict() - df['holiday'] = days.to_series().map(holiday_mapping).values - - # sort - df.index.name = 'Date' - df = df.loc['2012-09':] # Weird value before this - - dfs.append(df) - - return pd.concat(dfs) - - -# - -# Our dataset is the london smartmeter data. But at half hour intervals - -# + -df = get_smartmeter_df(max_files=12) - -# # Just get the first one for now -# dfs = list(dfs) - -# # df = df.resample(freq).first().dropna() # Where empty we will backfill, this will respect causality, and mostly maintain the mean - -df = df.tail(int(max_rows)).copy() # Just use last X rows -# df = pd.concat(dfs[:6], 0) -# # df = dfs[0] -print(df.block.value_counts()) -df -# - - - - -# ### Plot/explore - - - - - -# + -import holoviews as hv -from holoviews import opts - -from holoviews.plotting.links import RangeToolLink - -import datashader as ds - -from holoviews.operation.datashader import datashade, shade, dynspread, rasterize -from holoviews.operation import decimate - -hv.extension('bokeh') - - -# def house_curve(Name=None): -# if isinstance(Name, int): -# name = df.block.unique()[Name] -# d = df[df.block == Name] -# d_curve = hv.Curve(d, 'Date', 'energy(kWh/hh)', label=Name).opts(framewise=True) -# return d_curve - - -# dmap = hv.DynamicMap(house_curve, kdims=['Name']) -# dmap = dmap.redim.values(Name=list(df.block.unique())) -# dynspread(datashade(dmap).opts(width=800, -# height=300, -# tools=['xwheel_zoom', 'pan'], -# active_tools=['xwheel_zoom', 'pan'], -# default_tools=['reset', 'save', 'hover'] -# )) -# - - - - - - -# ### Profiling - -# + -# from pandas_profiling import ProfileReport -# profile = ProfileReport(df, title="Pandas Profiling Report", minimal=True) -# profile -# - - -# ### Norm - -df.describe() - -# + -import sklearn -from sklearn.preprocessing import StandardScaler, OrdinalEncoder -from sklearn_pandas import DataFrameMapper - -columns_input_numeric = list(df.drop(columns=columns_target)._get_numeric_data().columns) -columns_categorical = list(set(df.columns)-set(columns_input_numeric)-set(columns_target)) - -output_scalers = [([n], StandardScaler()) for n in columns_target] -transformers=output_scalers + \ -[([n], StandardScaler()) for n in columns_input_numeric] + \ -[([n], OrdinalEncoder()) for n in columns_categorical] -scaler = DataFrameMapper(transformers, df_out=True) -df_norm = scaler.fit_transform(df) -df_norm -# - - -output_scaler = next(filter(lambda r:r[0][0] in columns_target, scaler.features))[-1] -output_scaler - -# ### Split - -# + -# split data, with the test in the future - -d0 =df_norm.index.min() -d1 = df_norm.index.max() -split_time = d0+(d1-d0)*0.8 -split_time = split_time.round('1D') -print(split_time) -df_train = df_norm.groupby('block').apply(lambda d:d.loc[:split_time]).reset_index(level=0, drop=True) -df_test = df_norm.groupby('block').apply(lambda d:d.loc[split_time:]).reset_index(level=0, drop=True) -# df_test - -# + -# # Show split -# df_train['energy(kWh/hh)'].plot(label='train') -# df_test['energy(kWh/hh)'].plot(label='test') -# plt.ylabel('energy(kWh/hh)') -# plt.legend() -# - - -# # Show split -scatter = dynspread(datashade(hv.Curve(df_train, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='blue')) -scatter *= dynspread(datashade(hv.Curve(df_test, kdims=['Date'], vdims=['energy(kWh/hh)', 'block']).groupby('block'), cmap='red')) -scatter = scatter.opts(plot=dict(width=800)) -scatter - -# ### Dataset - -# + - -# ### Dataset -# These are the columns that we wont know in the future -# We need to blank them out in x_future -columns_blank=['visibility', - 'windBearing', 'temperature', 'dewPoint', 'pressure', - 'apparentTemperature', 'windSpeed', 'humidity'] -df_trains = [d.resample(freq).first().ffill().dropna() for _,d in df_train.groupby('block')] -df_tests = [d.resample(freq).first().ffill().dropna() for _,d in df_test.groupby('block')] -ds_train = Seq2SeqDataSets(df_trains, - window_past=window_past, - window_future=window_future, - columns_blank=columns_blank) -ds_test = Seq2SeqDataSets(df_tests, - window_past=window_past, - window_future=window_future, - columns_blank=columns_blank) -print(ds_train) -print(ds_test) -# - -# we can treat it like an array -ds_train[0] -len(ds_train) -ds_train[-1] - -# + -# We can get rows -x_past, y_past, x_future, y_future = ds_train.get_rows(10) - -# Plot one instance, this is what the model sees -y_past['energy(kWh/hh)'].plot(label='past') -y_future['energy(kWh/hh)'].plot(ax=plt.gca(), label='future') -plt.legend() -plt.ylabel('energy(kWh/hh)') - -# Notice we've added on two new columns tsp (time since present) and is_past -x_past.tail() -# - - -# Notice we've hidden some future columns to prevent cheating -x_future.tail() - - - -# ## Plot helpers - -# + -def plot_prediction(ds_preds, i): - """Plot a prediction into the future, at a single point in time.""" - d = ds_preds.isel(t_source=i) - - # Get arrays - xf = d.t_target - yp = d.y_pred - s = d.y_pred_std - yt = d.y_true - now = d.t_source.squeeze() - - - plt.figure(figsize=(12, 4)) - - plt.scatter(xf, yt, label='true', c='k', s=6) - ylim = plt.ylim() - - # plot prediction - plt.fill_between(xf, yp-2*s, yp+2*s, alpha=0.25, - facecolor="b", - interpolate=True, - label="2 std",) - plt.plot(xf, yp, label='pred', c='b') - - # plot true - plt.scatter( - d.t_past, - d.y_past, - c='k', - s=6 - ) - - # plot a red line for now - plt.vlines(x=now, ymin=0, ymax=1, label='now', color='r') - plt.ylim(*ylim) - - now=pd.Timestamp(now.values) - plt.title(f'Prediction NLL={d.nll.mean().item():2.2g}') - plt.xlabel(f'{now.date()}') - plt.ylabel('energy(kWh/hh)') - plt.legend() - plt.xticks(rotation=45) - plt.show() - -def plot_performance(ds_preds, full=False): - """Multiple plots using xr_preds""" - plot_prediction(ds_preds, 24) - - ds_preds.mean('t_source').plot.scatter('t_ahead_hours', 'nll') # Mean over all predictions - n = len(ds_preds.t_source) - plt.ylabel('Negative Log Likelihood (lower is better)') - plt.xlabel('Hours ahead') - plt.title(f'NLL vs time ahead (no. samples={n})') - plt.show() - - # Make a plot of the NLL over time. Does this solution get worse with time? - if full: - d = ds_preds.mean('t_ahead').groupby('t_source').mean().plot.scatter('t_source', 'nll') - plt.xticks(rotation=45) - plt.title('NLL over source time (lower is better)') - plt.show() - - # A scatter plot is easy with xarray - if full: - plt.figure(figsize=(5, 5)) - ds_preds.plot.scatter('y_true', 'y_pred', s=.01) - plt.show() - - -# - - - - -def plot_hist(trainer): - try: - df_hist = pd.read_csv(trainer.logger.experiment.metrics_file_path) - df_hist['epoch'] = df_hist['epoch'].ffill() - df_histe = df_hist.set_index('epoch').groupby('epoch').mean() - if len(df_histe)>1: - df_histe[['loss/train', 'loss/val']].plot(title='history') - return df_histe - except Exception: - pass - - -# ## Lightning - -# + -import pytorch_lightning as pl - -class PL_MODEL(pl.LightningModule): - def __init__(self, model, lr=3e-4, patience=2, weight_decay=0): - super().__init__() - self._model = model - self.lr = lr - self.patience = patience - self.weight_decay = weight_decay - - def forward(self, x_past, y_past, x_future, y_future=None): - """Eval/Predict""" - y_dist, extra = self._model(x_past, y_past, x_future, y_future) - return y_dist, extra - - def training_step(self, batch, batch_idx, phase='train'): - x_past, y_past, x_future, y_future = batch - y_dist, extra = self.forward(*batch) - loss = -y_dist.log_prob(y_future).mean() - self.log_dict({f'loss/{phase}':loss}) - if ('loss' in extra) and (phase=='train'): - # some models have a special loss - loss = extra['loss'] - self.log_dict({f'model_loss/{phase}':loss}) - return loss - - def validation_step(self, batch, batch_idx): - return self.training_step(batch, batch_idx, phase='val') - - def configure_optimizers(self): - optim = torch.optim.AdamW(self.parameters(), lr=self.lr, weight_decay=self.weight_decay) - scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( - optim, - patience=self.patience, - verbose=True, - min_lr=1e-7, - ) - return {'optimizer': optim, 'lr_scheduler': scheduler, 'monitor': 'loss/val'} - - -# - - -# # Run -from torch.utils.data import DataLoader -from pytorch_lightning.loggers import CSVLogger -from pytorch_lightning.callbacks.early_stopping import EarlyStopping - - -# + -# Init data -x_past, y_past, x_future, y_future = ds_train.get_rows(10) -input_size = x_past.shape[-1] -output_size = y_future.shape[-1] - -dl_train = DataLoader(ds_train, - batch_size=batch_size, - shuffle=True, - pin_memory=num_workers==0, - num_workers=num_workers) -dl_test = DataLoader(ds_test, batch_size=batch_size, num_workers=num_workers) - -# + -import gc - -def free_mem(): - gc.collect() - torch.cuda.empty_cache() - gc.collect() - - -# - - -from seq2seq_time.models.lstm_seq2seq import LSTMSeq2Seq -from seq2seq_time.models.lstm_seq import LSTMSeq -from seq2seq_time.models.lstm import LSTM -from seq2seq_time.models.baseline import BaselineLast -from seq2seq_time.models.transformer import Transformer -from seq2seq_time.models.transformer_autor import TransformerAutoR -from seq2seq_time.models.transformer_seq2seq import TransformerSeq2Seq -from seq2seq_time.models.transformer_seq import TransformerSeq -from seq2seq_time.models.neural_process import RANP -from seq2seq_time.models.transformer_process import TransformerProcess -# ## Plots -# + -# PL_MODEL(TransformerAutoR(input_size, output_size, hidden_out_size=32), -# patience=patience, -# lr=2e-5, -# weight_decay=1e-3) -# - - -models = [ -# TransformerAutoR2(input_size, -# output_size), - lambda: TransformerAutoR(input_size, - output_size, hidden_out_size=32), - lambda: RANP(input_size, - output_size, hidden_dim=32, - latent_dim=64, n_decoder_layers=4), - lambda: LSTM(input_size, - output_size, - hidden_size=80, - lstm_layers=3, - lstm_dropout=0.3), - lambda: LSTMSeq2Seq(input_size, - output_size, - hidden_size=64, - lstm_layers=2, - lstm_dropout=0.25), - lambda: TransformerSeq2Seq(input_size, - output_size, - hidden_size=128, - nhead=8, - nlayers=4, - attention_dropout=0.2), - lambda: Transformer(input_size, - output_size, - attention_dropout=0.2, - nhead=8, - nlayers=8, - hidden_size=128), -# lambda: TransformerSeq(input_size, -# output_size), -# lambda: LSTMSeq(input_size, -# output_size), - lambda :TransformerProcess(input_size, - output_size, hidden_size=16, - latent_dim=8, dropout=0.5, - nlayers=4,) -] -models - -# Baseline model -pt_model = BaselineLast() -model = PL_MODEL(pt_model).to(device) -trainer = pl.Trainer(gpus=1, - max_epochs=1, - limit_train_batches=0.01, - logger=CSVLogger("logs", - name=type(pt_model).__name__), - ) -trainer.fit(model, dl_train, dl_test) -print(plot_hist(trainer)) -ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*8, - device=device, - scaler=output_scaler) -print(f'baseline nll: {ds_predss.nll.mean().item():2.2g}') - -# ## Train - -for m_fn in models: - pt_model = m_fn() - name = type(pt_model).__name__ - print(name) - - # Wrap in lightning - patience = 2 - model = PL_MODEL(pt_model, patience=patience, lr=2e-5, weight_decay=1e-3).to(device) - - # Trainer - trainer = pl.Trainer(gpus=1, - min_epochs=2, - max_epochs=30, - amp_level='O1', - precision=16, - gradient_clip_val=1, - logger=CSVLogger("logs", - name=type(pt_model).__name__), - callbacks=[ - EarlyStopping(monitor='loss/val', patience=patience*2), -# PrintTableMetricsCallback2() - ], - ) - - # Train - trainer.fit(model, dl_train, dl_test) - - - - ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*2, - device=device, - scaler=output_scaler) - - print(name) - print(f'mean_NLL {ds_predss.nll.mean().item():2.2f}') - - # Performance - ds_preds = ds_predss.isel(block=0) - print(plot_hist(trainer)) - plot_performance(ds_preds) - - model.cpu() - free_mem() - -# # Plots - - -# + -# Get latest checkpoint for a model type... -pt_model = models[1]() -name = type(pt_model).__name__ - -checkpoints = (Path('logs')/name).glob('version_*') -sort_checkpoints = lambda f:int(f.stem.split('_')[-1]) -checkpoints = sorted(checkpoints, key=sort_checkpoints) -latest_checkpoint = checkpoints[-1] -checkpoint_f = sorted(latest_checkpoint.glob('checkpoints/*.ckpt'))[-1] -print('pt model name', name) -print('latest_checkpoint', checkpoint_f) -# - - -# Load -model = PL_MODEL(pt_model).to(device) -model.load_from_checkpoint(str(checkpoint_f), model=pt_model) - -ds_predss = predict_multi(model.to(device), - ds_test.datasets, - batch_size*4, - device=device, - scaler=output_scaler) -ds_predss.nll.mean().item() - - - -ds_pred_block = ds_predss.isel(block=1) - -# # holoviews pred - -# + -import holoviews as hv -from holoviews import opts - -import holoviews as hv -from holoviews import opts - -import datashader as ds -from holoviews.operation.datashader import datashade, shade, dynspread, rasterize -from holoviews.operation import decimate - -hv.extension('bokeh') - -# + -# A few diagnostic plots -d_source = ds_predss.mean(['t_ahead', - 'block'])['nll'].groupby('t_source').mean() -nll_vs_time = (hv.Curve(d_source).opts(width=600, - height=200, - title='Error vs time of prediction')) - -d_ahead = ds_predss.mean(['t_source', - 'block'])['nll'].groupby('t_ahead_hours').mean() -nll_vs_tahead = (hv.Curve( - (d_ahead.t_ahead_hours, - d_ahead)).redim(x='hours ahead', - y='nll').opts(width=600, - height=200, - title='Error vs time ahead')) - -true_vs_pred = datashade(hv.Scatter( - (ds_predss.y_true, - ds_predss.y_pred))).redim(x='true', y='pred').opts(title='Scatter plot') -true_vs_pred = dynspread(true_vs_pred) - -l = nll_vs_time + nll_vs_tahead + true_vs_pred -l.cols(1).opts( - framewise=True, - shared_axes=False, -) - - -# + -def hv_predict_from_time(t_source): - """Plot predictions with holoviews""" - - # Let us pass in an int - if isinstance(t_source, int): - t_source = ds_pred_block.t_source[t_source].to_pandas() - - d = ds_pred_block.sel(t_source=t_source) - - # Sometimes there are duplicate times, take the first - if len(d.t_source.shape) and d.t_source.shape[0] > 0: - d = d.isel(t_source=0) - if len(d.t_source.shape) and d.t_source.shape[0] == 0: - return None - - now = d.t_source.to_pandas() - - # Plot true - x = np.concatenate([d.t_past, d.t_target]) - yt = np.concatenate([d.y_past, d.y_true]) - p = hv.Scatter({ - 'x': x, - 'y': yt - }, label='true').opts(color='black') - - # Get arrays - xf = d.t_target.values - yp = d.y_pred - s = d.y_pred_std - p *= hv.Curve({ - 'x': xf, - 'y': yp - }, label='pred').opts(color='blue') - p *= hv.Area((xf, yp - 2 * s, yp + 2 * s), - vdims=['y', 'y2'], - label='2*std').opts(alpha=0.5, line_width=0) - - # plot now line - p *= hv.VLine(now, label='now').opts(color='red', framewise=True) - return p.opts(title=f'Prediction at {now}. NLL={d.nll.mean().item():2.2f}') - - -dmap_hv_predict_from_time = (hv.DynamicMap(hv_predict_from_time, kdims=['t_source']) - .redim.values(t_source=ds_pred_block.t_source.to_pandas()) - .opts(width=800, - height=300, - )) -dmap_hv_predict_from_time - - -# + -def hv_plot_predictions_vs_time(it_ahead=6, - std=False, - ds_pred_block=ds_pred_block): - """Plot predictions vs time with holoviews""" - - d = ds_pred_block.isel(t_ahead=it_ahead).groupby('t_source').first() - - p = hv.Scatter({ - 'x': d.t_source, - 'y': d.y_true - }, label='true').opts(color='black', size=2) - - # Get arrays - xf = d.t_source.values - yp = d.y_pred - s = d.y_pred_std - - # Mean - p *= hv.Curve({'x': xf, 'y': yp}, label='pred').opts(color='blue') - if std: - p *= hv.Spread((xf, yp, s*2), - label='2*std').opts(alpha=0.5, line_width=0) - else: - p = datashade(p) - - title = f'Prediction at {it_ahead * pd.Timedelta(freq)} ahead. NLL={d.nll.mean().item():2.2f}' - return p.opts( - title=title, - width=800, - height=300, - tools=['xwheel_zoom'], - active_tools=['xwheel_zoom', 'pan'], - ) - - -p = hv_plot_predictions_vs_time( - 6, std=True, ds_pred_block=ds_pred_block.isel(t_source=slice(100, 4000))) -p -# - - - - -# # Summarize experiments - -# # LR finder - -# + - -# # Run learning rate finder -# lr_finder = trainer.tuner.lr_find(model) - -# # Results can be found in -# lr_finder.results - -# # Plot with -# fig = lr_finder.plot(suggest=True) -# fig.show() - -# # Pick point based on plot, or get suggestion -# new_lr = lr_finder.suggestion() -# - - - - - diff --git a/seq2seq_time/data/data.py b/seq2seq_time/data/data.py index 2fa02b8..49fec4a 100644 --- a/seq2seq_time/data/data.py +++ b/seq2seq_time/data/data.py @@ -28,6 +28,10 @@ class RegressionForecastData: # Check processing self.check() + + @property + def columns_past(self): + return set(self.df.columns)-set(self.columns_forecast)-set(self.columns_target) def download(self) -> pd.DataFrame: """Implement this method to download data and return raw df""" @@ -54,8 +58,8 @@ class RegressionForecastData: def to_datasets(self, window_past: int, window_future: int, valid:bool=False) -> Tuple[Seq2SeqDataSet, Seq2SeqDataSet]: """Convert to torch datasets""" - ds_train = Seq2SeqDataSet(df_train, window_past=window_past, window_future=window_future, columns_target=self.columns_target, columns_past=self.columns_past) - ds_test = Seq2SeqDataSet(df_test, window_past=window_past, window_future=window_future, columns_target=self.columns_target, columns_past=self.columns_past) + ds_train = Seq2SeqDataSet(self.df_train, window_past=window_past, window_future=window_future, columns_target=self.columns_target, columns_past=self.columns_past) + ds_test = Seq2SeqDataSet(self.df_test, window_past=window_past, window_future=window_future, columns_target=self.columns_target, columns_past=self.columns_past) return ds_train, ds_test def __repr__(self): diff --git a/seq2seq_time/data/dataset.py b/seq2seq_time/data/dataset.py index d297936..0fe98de 100644 --- a/seq2seq_time/data/dataset.py +++ b/seq2seq_time/data/dataset.py @@ -31,7 +31,7 @@ class Seq2SeqDataSet(torch.utils.data.Dataset): assert df.index.freq is not None, 'should have freq' assert_no_objects(df) - self.df = df + self.df = df.dropna(subset=columns_target) self.window_past = window_past self.window_future = window_future diff --git a/seq2seq_time/data/tidal.py b/seq2seq_time/data/tidal.py index ed21e9e..20c3168 100644 --- a/seq2seq_time/data/tidal.py +++ b/seq2seq_time/data/tidal.py @@ -1,5 +1,6 @@ import uptide import pandas as pd +import numpy as np # https://en.wikipedia.org/wiki/Theory_of_tides#Harmonic_analysis default_tidal_constituents = [