Files
shap--shap/notebooks/text_examples/sentiment_analysis/Positive vs. Negative Sentiment Classification.ipynb
2026-07-13 13:22:52 +08:00

6054 lines
2.1 MiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Positive vs. Negative Sentiment Classification\n",
"\n",
"In this notebook, we demonstrate how to interpret a sentiment classification model using SHAP. The goal is to understand how individual words in a movie review influence the model's prediction of positive or negative sentiment."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/aribaa/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020\n",
" warnings.warn(\n",
"/Users/aribaa/Library/Python/3.9/lib/python/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
" from .autonotebook import tqdm as notebook_tqdm\n"
]
}
],
"source": [
"import datasets\n",
"import numpy as np\n",
"import transformers\n",
"\n",
"import shap"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Load the IMDB movie review dataset"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"# Load IMDB dataset (movie reviews labeled as positive/negative)\n",
"dataset = datasets.load_dataset(\"imdb\", split=\"test\")\n",
"\n",
"# shorten the strings to fit into the pipeline model\n",
"short_data = [v[:500] for v in dataset[\"text\"][:20]]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Load and run a sentiment analysis pipeline"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"No model was supplied, defaulted to distilbert/distilbert-base-uncased-finetuned-sst-2-english and revision 714eb0f (https://huggingface.co/distilbert/distilbert-base-uncased-finetuned-sst-2-english).\n",
"Using a pipeline without specifying a model name and revision in production is not recommended.\n",
"Device set to use mps:0\n",
"/Users/aribaa/Library/Python/3.9/lib/python/site-packages/transformers/pipelines/text_classification.py:111: UserWarning: `return_all_scores` is now deprecated, if want a similar functionality use `top_k=None` instead of `return_all_scores=True` or `top_k=1` instead of `return_all_scores=False`.\n",
" warnings.warn(\n"
]
},
{
"data": {
"text/plain": [
"[[{'label': 'NEGATIVE', 'score': 0.07581914216279984},\n",
" {'label': 'POSITIVE', 'score': 0.924180805683136}],\n",
" [{'label': 'NEGATIVE', 'score': 0.01834261603653431},\n",
" {'label': 'POSITIVE', 'score': 0.9816573858261108}]]"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Load pretrained sentiment analysis model from HuggingFace\n",
"# Note: Model will be downloaded on first run\n",
"classifier = transformers.pipeline(\"sentiment-analysis\", return_all_scores=True)\n",
"classifier(short_data[:2])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Explain the sentiment analysis pipeline"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"# Create SHAP explainer to compute word-level importance\n",
"explainer = shap.Explainer(classifier)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"PartitionExplainer explainer: 3it [00:11, 11.25s/it] \n"
]
}
],
"source": [
"# explain the predictions of the pipeline on the first two samples\n",
"shap_values = explainer(short_data[:2])"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.84395337721362%\" y1=\"33\" x2=\"48.84395337721362%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.84395337721362%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"32.64848281910032%\" y1=\"33\" x2=\"32.64848281910032%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.64848281910032%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"16.453012260987034%\" y1=\"33\" x2=\"16.453012260987034%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.453012260987034%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"65.03942393532692%\" y1=\"33\" x2=\"65.03942393532692%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.03942393532692%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"81.2348944934402%\" y1=\"33\" x2=\"81.2348944934402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.2348944934402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1.3</text><line x1=\"34.651782450962344%\" y1=\"33\" x2=\"34.651782450962344%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.651782450962344%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.437109</text><text x=\"34.651782450962344%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.437109</text><text x=\"34.651782450962344%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"60.94633217099811%\" y1=\"33\" x2=\"60.94633217099811%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.94633217099811%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.924181</text><text x=\"60.94633217099811%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.924181</text><text x=\"60.94633217099811%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"9.803305812217065%\" width=\"51.14302635878105%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"46.452700057638936%\" x2=\"60.94633217099811%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_57\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"53.69951611431853%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_57\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.268</text><svg x=\"46.452700057638936%\" y=\"40\" height=\"20\" width=\"14.493632113359176%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">good</text> </svg></svg><line x1=\"43.2466683083443%\" x2=\"46.452700057638936%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_58\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"44.849684182991616%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_58\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.059</text><svg x=\"43.2466683083443%\" y=\"40\" height=\"20\" width=\"3.206031749294638%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">sci</text> </svg></svg><line x1=\"40.11202946053356%\" x2=\"43.2466683083443%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_19\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"41.67934888443893%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_19\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.058</text><svg x=\"40.11202946053356%\" y=\"40\" height=\"20\" width=\"3.1346388478107343%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to good</text> </svg></svg><line x1=\"37.1469476429624%\" x2=\"40.11202946053356%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"38.62948855174798%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.055</text><svg x=\"37.1469476429624%\" y=\"40\" height=\"20\" width=\"2.9650818175711606%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"34.72391909494196%\" x2=\"37.1469476429624%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"35.93543336895218%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.045</text><svg x=\"34.72391909494196%\" y=\"40\" height=\"20\" width=\"2.42302854802044%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">love sci</text> </svg></svg><line x1=\"32.3592168476734%\" x2=\"34.72391909494196%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"33.541567971307686%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.044</text><svg x=\"32.3592168476734%\" y=\"40\" height=\"20\" width=\"2.3647022472685606%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">it is</text> </svg></svg><line x1=\"30.270420337612%\" x2=\"32.3592168476734%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_60\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.314818592642702%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_60\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.039</text><svg x=\"30.270420337612%\" y=\"40\" height=\"20\" width=\"2.088796510061403%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">fi</text> </svg></svg><line x1=\"28.189039000701744%\" x2=\"30.270420337612%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_22\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"29.22972966915687%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_22\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.039</text><svg x=\"28.189039000701744%\" y=\"40\" height=\"20\" width=\"2.0813813369102547%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"26.12526860579838%\" x2=\"28.189039000701744%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_25\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"27.15715380325006%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_25\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.038</text><svg x=\"26.12526860579838%\" y=\"40\" height=\"20\" width=\"2.063770394903365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to Star Trek</text> </svg></svg><line x1=\"24.22118848647355%\" x2=\"26.12526860579838%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_23\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.173228546135967%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_23\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.035</text><svg x=\"24.22118848647355%\" y=\"40\" height=\"20\" width=\"1.9040801193248278%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">as Babylon</text> </svg></svg><line x1=\"22.36635671728364%\" x2=\"24.22118848647355%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_20\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"23.293772601878594%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_20\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.034</text><svg x=\"22.36635671728364%\" y=\"40\" height=\"20\" width=\"1.8548317691899108%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">TV</text> </svg></svg><line x1=\"20.5663786128801%\" x2=\"22.36635671728364%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_24\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"21.46636766508187%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_24\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.033</text><svg x=\"20.5663786128801%\" y=\"40\" height=\"20\" width=\"1.7999781044035394%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">5 is</text> </svg></svg><line x1=\"18.927790193191367%\" x2=\"20.5663786128801%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_21\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"19.747084403035736%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_21\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.03</text><svg x=\"18.927790193191367%\" y=\"40\" height=\"20\" width=\"1.638588419688734%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">sci</text> </svg></svg><line x1=\"17.324166113346852%\" x2=\"18.927790193191367%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_46\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.12597815326911%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_46\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.03</text><svg x=\"17.324166113346852%\" y=\"40\" height=\"20\" width=\"1.603624079844515%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">m sure</text> </svg></svg><line x1=\"16.2072407423566%\" x2=\"17.324166113346852%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.765703427851726%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.021</text><svg x=\"16.2072407423566%\" y=\"40\" height=\"20\" width=\"1.116925370990252%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I</text> </svg></svg><line x1=\"15.133761837331491%\" x2=\"16.2072407423566%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_44\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.670501289844045%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_44\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"15.133761837331491%\" y=\"40\" height=\"20\" width=\"1.0734789050251088%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I</text> </svg></svg><line x1=\"14.246523825721047%\" x2=\"15.133761837331491%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"14.69014283152627%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"14.246523825721047%\" y=\"40\" height=\"20\" width=\"0.8872380116104441%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">am willing to put up with a lot.</text> </svg></svg><line x1=\"13.40433403975686%\" x2=\"14.246523825721047%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_45\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.825428932738953%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_45\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"13.40433403975686%\" y=\"40\" height=\"20\" width=\"0.8421897859641874%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">'</text> </svg></svg><line x1=\"12.616552216847932%\" x2=\"13.40433403975686%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_26\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.010443128302395%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_26\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"12.616552216847932%\" y=\"40\" height=\"20\" width=\"0.7877818229089275%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(the original)</text> </svg></svg><line x1=\"11.854382717164626%\" x2=\"12.616552216847932%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_59\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"12.235467467006279%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_59\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.014</text><svg x=\"11.854382717164626%\" y=\"40\" height=\"20\" width=\"0.7621694996833064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-</text> </svg></svg><line x1=\"11.185204313116396%\" x2=\"11.854382717164626%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.51979351514051%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.012</text><svg x=\"11.185204313116396%\" y=\"40\" height=\"20\" width=\"0.66917840404823%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi and</text> </svg></svg><line x1=\"10.810394263843065%\" x2=\"11.185204313116396%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_14\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.99779928847973%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_14\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.007</text><svg x=\"10.810394263843065%\" y=\"40\" height=\"20\" width=\"0.3748100492733304%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I really</text> </svg></svg><line x1=\"10.476867771728331%\" x2=\"10.810394263843065%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_53\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.643631017785697%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_53\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"10.476867771728331%\" y=\"40\" height=\"20\" width=\"0.33352649211473384%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">think</text> </svg></svg><line x1=\"10.168005300874153%\" x2=\"10.476867771728331%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.322436536301243%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"10.168005300874153%\" y=\"40\" height=\"20\" width=\"0.3088624708541783%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">did</text> </svg></svg><line x1=\"9.913869515484976%\" x2=\"10.168005300874153%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_27\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.040937408179564%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_27\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"9.913869515484976%\" y=\"40\" height=\"20\" width=\"0.25413578538917747%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"9.803305812217065%\" x2=\"9.913869515484976%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_29\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.85858766385102%\" y=\"71\" font-size=\"12px\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_29\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"9.803305812217065%\" y=\"40\" height=\"20\" width=\"0.11056370326791054%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.913869515484976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"60.94633217099811%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"9.803305812217065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"60.94633217099811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"46.452700057638936%\" y=\"40\" height=\"20\" width=\"14.493632113359176%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_57').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_57').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"46.452700057638936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.2466683083443%\" y=\"40\" height=\"20\" width=\"3.206031749294638%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_58').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_58').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.2466683083443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"40.11202946053356%\" y=\"40\" height=\"20\" width=\"3.1346388478107343%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_19').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"40.11202946053356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.1469476429624%\" y=\"40\" height=\"20\" width=\"2.9650818175711606%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_17').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.1469476429624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.72391909494196%\" y=\"40\" height=\"20\" width=\"2.42302854802044%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"34.72391909494196%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.3592168476734%\" y=\"40\" height=\"20\" width=\"2.3647022472685606%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_18').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.3592168476734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.270420337612%\" y=\"40\" height=\"20\" width=\"2.088796510061403%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_60').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_60').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.270420337612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.189039000701744%\" y=\"40\" height=\"20\" width=\"2.0813813369102547%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_22').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"28.189039000701744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.12526860579838%\" y=\"40\" height=\"20\" width=\"2.063770394903365%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_25').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.12526860579838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.22118848647355%\" y=\"40\" height=\"20\" width=\"1.9040801193248278%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_23').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.22118848647355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.36635671728364%\" y=\"40\" height=\"20\" width=\"1.8548317691899108%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_20').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.36635671728364%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.5663786128801%\" y=\"40\" height=\"20\" width=\"1.7999781044035394%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_24').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.5663786128801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.927790193191367%\" y=\"40\" height=\"20\" width=\"1.638588419688734%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_21').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.927790193191367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.324166113346852%\" y=\"40\" height=\"20\" width=\"1.603624079844515%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_46').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_46').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.324166113346852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.2072407423566%\" y=\"40\" height=\"20\" width=\"1.116925370990252%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.2072407423566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.133761837331491%\" y=\"40\" height=\"20\" width=\"1.0734789050251088%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_44').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_44').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.133761837331491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.246523825721047%\" y=\"40\" height=\"20\" width=\"0.8872380116104441%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.246523825721047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.40433403975686%\" y=\"40\" height=\"20\" width=\"0.8421897859641874%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_45').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_45').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.40433403975686%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.616552216847932%\" y=\"40\" height=\"20\" width=\"0.7877818229089275%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_26').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.616552216847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.854382717164626%\" y=\"40\" height=\"20\" width=\"0.7621694996833064%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_59').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_59').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.854382717164626%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.185204313116396%\" y=\"40\" height=\"20\" width=\"0.66917840404823%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.185204313116396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.810394263843065%\" y=\"40\" height=\"20\" width=\"0.3748100492733304%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_14').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.810394263843065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.476867771728331%\" y=\"40\" height=\"20\" width=\"0.33352649211473384%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_53').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_53').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.476867771728331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.168005300874153%\" y=\"40\" height=\"20\" width=\"0.3088624708541783%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_15').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.168005300874153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.913869515484976%\" y=\"40\" height=\"20\" width=\"0.25413578538917747%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_27').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"9.803305812217065%\" y=\"40\" height=\"20\" width=\"0.11056370326791054%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_29').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"60.94633217099811%\" width=\"24.848476638745275%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"60.94633217099811%\" x2=\"63.61777324663615%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_52\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"62.28205270881713%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_52\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.049</text><svg x=\"60.94633217099811%\" y=\"40\" height=\"20\" width=\"2.671441075638036%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"63.61777324663615%\" x2=\"65.61176413128561%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_51\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"64.61476868896088%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_51\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.037</text><svg x=\"63.61777324663615%\" y=\"40\" height=\"20\" width=\"1.9939908846494632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there</text> </svg></svg><line x1=\"65.61176413128561%\" x2=\"67.14705226898843%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_38\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"66.37940820013702%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_38\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.028</text><svg x=\"65.61176413128561%\" y=\"40\" height=\"20\" width=\"1.5352881377028211%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">painfully one-dimensional</text> </svg></svg><line x1=\"67.14705226898843%\" x2=\"68.68149329674655%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_56\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"67.9142727828675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_56\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.028</text><svg x=\"67.14705226898843%\" y=\"40\" height=\"20\" width=\"1.5344410277581204%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"68.68149329674655%\" x2=\"70.16192721265959%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_10\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"69.42171025470307%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.027</text><svg x=\"68.68149329674655%\" y=\"40\" height=\"20\" width=\"1.4804339159130393%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">misunderstood.</text> </svg></svg><line x1=\"70.16192721265959%\" x2=\"71.37401320683067%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_30\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"70.76797020974513%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_30\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.022</text><svg x=\"70.16192721265959%\" y=\"40\" height=\"20\" width=\"1.2120859941710762%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cheap cardboard sets,</text> </svg></svg><line x1=\"71.37401320683067%\" x2=\"72.40431276522096%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_11\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"71.88916298602581%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"71.37401320683067%\" y=\"40\" height=\"20\" width=\"1.030299558390297%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I tried</text> </svg></svg><line x1=\"72.40431276522096%\" x2=\"73.29304221998639%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"72.84867749260368%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"72.40431276522096%\" y=\"40\" height=\"20\" width=\"0.888729454765425%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">underfunded,</text> </svg></svg><line x1=\"73.29304221998639%\" x2=\"74.16106398378393%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_31\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"73.72705310188516%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_31\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"73.29304221998639%\" y=\"40\" height=\"20\" width=\"0.8680217637975431%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">stilted dialogues,</text> </svg></svg><line x1=\"74.16106398378393%\" x2=\"75.02881138917087%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_6\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"74.59493768647741%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"74.16106398378393%\" y=\"40\" height=\"20\" width=\"0.8677474053869361%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">under</text> </svg></svg><line x1=\"75.02881138917087%\" x2=\"75.86596874286646%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_7\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"75.44739006601867%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"75.02881138917087%\" y=\"40\" height=\"20\" width=\"0.8371573536955879%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-</text> </svg></svg><line x1=\"75.86596874286646%\" x2=\"76.66960069376493%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_9\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"76.2677847183157%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"75.86596874286646%\" y=\"40\" height=\"20\" width=\"0.8036319508984775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"76.66960069376493%\" x2=\"77.41996336040876%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_47\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"77.04478202708685%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_47\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"76.66960069376493%\" y=\"40\" height=\"20\" width=\"0.7503626666438237%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there are</text> </svg></svg><line x1=\"77.41996336040876%\" x2=\"78.15780802009975%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"77.78888569025426%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"77.41996336040876%\" y=\"40\" height=\"20\" width=\"0.7378446596909924%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">match the background</text> </svg></svg><line x1=\"78.15780802009975%\" x2=\"78.88678100119108%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_37\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"78.52229451064542%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_37\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"78.15780802009975%\" y=\"40\" height=\"20\" width=\"0.7289729810913315%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"78.88678100119108%\" x2=\"79.60295667861699%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_4\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"79.24486883990403%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"78.88678100119108%\" y=\"40\" height=\"20\" width=\"0.7161756774259089%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Sci-fi movies/TV are usually</text> </svg></svg><line x1=\"79.60295667861699%\" x2=\"80.30397447794236%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_8\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"79.95346557827968%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"79.60295667861699%\" y=\"40\" height=\"20\" width=\"0.7010177993253706%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">appreciated</text> </svg></svg><line x1=\"80.30397447794236%\" x2=\"80.9912670748666%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_42\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"80.64762077640448%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_42\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"80.30397447794236%\" y=\"40\" height=\"20\" width=\"0.6872925969242374%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a 'sci-fi' setting.</text> </svg></svg><line x1=\"80.9912670748666%\" x2=\"81.56107932989086%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_12\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.27617320237873%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"80.9912670748666%\" y=\"40\" height=\"20\" width=\"0.5698122550242601%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to like this</text> </svg></svg><line x1=\"81.56107932989086%\" x2=\"82.0991670507659%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_41\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.83012319032838%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_41\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"81.56107932989086%\" y=\"40\" height=\"20\" width=\"0.5380877208750405%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">be overcome with</text> </svg></svg><line x1=\"82.0991670507659%\" x2=\"82.56694275911188%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_34\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"82.33305490493889%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_34\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"82.0991670507659%\" y=\"40\" height=\"20\" width=\"0.46777570834598237%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"82.56694275911188%\" x2=\"83.02851692506044%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_33\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"82.79772984208617%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_33\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"82.56694275911188%\" y=\"40\" height=\"20\" width=\"0.46157416594856215%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">doesn'</text> </svg></svg><line x1=\"83.02851692506044%\" x2=\"83.43491006467511%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.23171349486778%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"83.02851692506044%\" y=\"40\" height=\"20\" width=\"0.4063931396146643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cannot</text> </svg></svg><line x1=\"83.43491006467511%\" x2=\"83.80293869214583%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_32\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.61892437841047%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_32\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"83.43491006467511%\" y=\"40\" height=\"20\" width=\"0.3680286274707214%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">CG that</text> </svg></svg><line x1=\"83.80293869214583%\" x2=\"84.12365360850299%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_54\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.96329615032441%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_54\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"83.80293869214583%\" y=\"40\" height=\"20\" width=\"0.32071491635716143%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Babylon</text> </svg></svg><line x1=\"84.12365360850299%\" x2=\"84.42724925353102%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.275451431017%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"84.12365360850299%\" y=\"40\" height=\"20\" width=\"0.3035956450280253%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"84.42724925353102%\" x2=\"84.70547439773884%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_55\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.56636182563493%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_55\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"84.42724925353102%\" y=\"40\" height=\"20\" width=\"0.2782251442078234%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">5</text> </svg></svg><line x1=\"84.70547439773884%\" x2=\"84.9362315069383%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_49\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.82085295233857%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_49\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"84.70547439773884%\" y=\"40\" height=\"20\" width=\"0.2307571091994589%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you</text> </svg></svg><line x1=\"84.9362315069383%\" x2=\"85.16096767629418%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_61\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.04859959161624%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_61\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"84.9362315069383%\" y=\"40\" height=\"20\" width=\"0.2247361693558787%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"85.16096767629418%\" x2=\"85.37049500442625%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_13\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.26573134036022%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"85.16096767629418%\" y=\"40\" height=\"20\" width=\"0.20952732813206865%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"85.37049500442625%\" x2=\"85.54979318431056%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_16\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.4601440943684%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"85.37049500442625%\" y=\"40\" height=\"20\" width=\"0.17929817988431296%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"85.54979318431056%\" x2=\"85.63986137786223%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.5948272810864%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"85.54979318431056%\" y=\"40\" height=\"20\" width=\"0.09006819355167295%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Silly prosthetics</text> </svg></svg><line x1=\"85.63986137786223%\" x2=\"85.72388223350255%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_48\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.68187180568239%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_48\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"85.63986137786223%\" y=\"40\" height=\"20\" width=\"0.08402085564031836%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">those of</text> </svg></svg><line x1=\"85.72388223350255%\" x2=\"85.77535949151685%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.7496208625097%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"85.72388223350255%\" y=\"40\" height=\"20\" width=\"0.0514772580143017%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">characters</text> </svg></svg><line x1=\"85.77535949151685%\" x2=\"85.79190840952714%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_50\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.78363395052199%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_50\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"85.77535949151685%\" y=\"40\" height=\"20\" width=\"0.016548918010286684%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">out</text> </svg></svg><line x1=\"85.79190840952714%\" x2=\"85.79480880974339%\" y1=\"60\" y2=\"60\" id=\"_fb_rlgyqtnpfskgotjurlgv_ind_43\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.79335860963526%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_rlgyqtnpfskgotjurlgv_ind_43\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"85.79190840952714%\" y=\"40\" height=\"20\" width=\"0.0029004002162480447%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"60.94633217099811%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"85.79480880974339%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"63.61777324663615%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"60.94633217099811%\" y=\"40\" height=\"20\" width=\"2.671441075638036%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_52').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_52').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"65.61176413128561%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.61777324663615%\" y=\"40\" height=\"20\" width=\"1.9939908846494632%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_51').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_51').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.14705226898843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"65.61176413128561%\" y=\"40\" height=\"20\" width=\"1.5352881377028211%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_38').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"68.68149329674655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.14705226898843%\" y=\"40\" height=\"20\" width=\"1.5344410277581204%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_56').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_56').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.16192721265959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.68149329674655%\" y=\"40\" height=\"20\" width=\"1.4804339159130393%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_10').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.37401320683067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.16192721265959%\" y=\"40\" height=\"20\" width=\"1.2120859941710762%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_30').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"72.40431276522096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.37401320683067%\" y=\"40\" height=\"20\" width=\"1.030299558390297%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_11').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.29304221998639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.40431276522096%\" y=\"40\" height=\"20\" width=\"0.888729454765425%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"74.16106398378393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.29304221998639%\" y=\"40\" height=\"20\" width=\"0.8680217637975431%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_31').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.02881138917087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"74.16106398378393%\" y=\"40\" height=\"20\" width=\"0.8677474053869361%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.86596874286646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.02881138917087%\" y=\"40\" height=\"20\" width=\"0.8371573536955879%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_7').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.66960069376493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.86596874286646%\" y=\"40\" height=\"20\" width=\"0.8036319508984775%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_9').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.41996336040876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.66960069376493%\" y=\"40\" height=\"20\" width=\"0.7503626666438237%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_47').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_47').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"78.15780802009975%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.41996336040876%\" y=\"40\" height=\"20\" width=\"0.7378446596909924%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_35').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"78.88678100119108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.15780802009975%\" y=\"40\" height=\"20\" width=\"0.7289729810913315%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_37').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.60295667861699%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.88678100119108%\" y=\"40\" height=\"20\" width=\"0.7161756774259089%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.30397447794236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.60295667861699%\" y=\"40\" height=\"20\" width=\"0.7010177993253706%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_8').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.9912670748666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.30397447794236%\" y=\"40\" height=\"20\" width=\"0.6872925969242374%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_42').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_42').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.56107932989086%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.9912670748666%\" y=\"40\" height=\"20\" width=\"0.5698122550242601%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_12').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.0991670507659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.56107932989086%\" y=\"40\" height=\"20\" width=\"0.5380877208750405%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_41').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.56694275911188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.0991670507659%\" y=\"40\" height=\"20\" width=\"0.46777570834598237%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_34').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.02851692506044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.56694275911188%\" y=\"40\" height=\"20\" width=\"0.46157416594856215%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_33').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.43491006467511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.02851692506044%\" y=\"40\" height=\"20\" width=\"0.4063931396146643%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_40').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.80293869214583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.43491006467511%\" y=\"40\" height=\"20\" width=\"0.3680286274707214%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_32').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.12365360850299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.80293869214583%\" y=\"40\" height=\"20\" width=\"0.32071491635716143%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_54').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_54').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.42724925353102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.12365360850299%\" y=\"40\" height=\"20\" width=\"0.3035956450280253%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_36').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.70547439773884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.42724925353102%\" y=\"40\" height=\"20\" width=\"0.2782251442078234%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_55').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_55').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.9362315069383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.70547439773884%\" y=\"40\" height=\"20\" width=\"0.2307571091994589%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_49').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_49').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.16096767629418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.9362315069383%\" y=\"40\" height=\"20\" width=\"0.2247361693558787%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_61').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_61').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.37049500442625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.16096767629418%\" y=\"40\" height=\"20\" width=\"0.20952732813206865%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_13').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.54979318431056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.37049500442625%\" y=\"40\" height=\"20\" width=\"0.17929817988431296%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_16').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.63986137786223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.54979318431056%\" y=\"40\" height=\"20\" width=\"0.09006819355167295%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_28').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.72388223350255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.63986137786223%\" y=\"40\" height=\"20\" width=\"0.08402085564031836%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_48').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_48').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.77535949151685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.72388223350255%\" y=\"40\" height=\"20\" width=\"0.0514772580143017%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_39').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.79190840952714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.77535949151685%\" y=\"40\" height=\"20\" width=\"0.016548918010286684%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_50').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_50').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"85.79190840952714%\" y=\"40\" height=\"20\" width=\"0.0029004002162480447%\" onmouseover=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_43').style.textDecoration = 'underline';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 1;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rlgyqtnpfskgotjurlgv_ind_43').style.textDecoration = 'none';document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 0;document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.021 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06983561101208159)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_0').style.opacity = 0;\"\n",
" >I </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.045 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.16442859972271742)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_1').style.opacity = 0;\"\n",
" >love sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.012 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.03830461477520289)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_2').style.opacity = 0;\"\n",
" >-fi and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016 / 9</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_3').style.opacity = 0;\"\n",
" >am willing to put up with a lot. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013 / 8</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_4'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_4').style.opacity = 0;\"\n",
" >Sci-fi movies/TV are usually </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016 / 4</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_5'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_5').style.opacity = 0;\"\n",
" >underfunded, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_6'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_6').style.opacity = 0;\"\n",
" >under</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_7'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_7').style.opacity = 0;\"\n",
" >-</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_8'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_8').style.opacity = 0;\"\n",
" >appreciated </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_9'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_9').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.027 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_10'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_10').style.opacity = 0;\"\n",
" >misunderstood. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_11'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06983561101208147)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_11').style.opacity = 0;\"\n",
" >I tried </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_12'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_12').style.opacity = 0;\"\n",
" >to like this</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_13'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_13').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.007 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_14'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.02253911665676371)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_14').style.opacity = 0;\"\n",
" >I really </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_15').style.opacity = 0;\"\n",
" >did</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_16'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_16').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.055</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.20384234501881549)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_17').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.044 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_18').style.opacity = 0;\"\n",
" >it is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.058 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_19'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2117250940780353)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_19').style.opacity = 0;\"\n",
" >to good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.034</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_20'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_20').style.opacity = 0;\"\n",
" >TV </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.03</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_21'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10924935630817992)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_21').style.opacity = 0;\"\n",
" >sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.039 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_22'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_22').style.opacity = 0;\"\n",
" >-fi </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.035 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_23'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_23').style.opacity = 0;\"\n",
" >as Babylon </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.033 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_24'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1171321053673995)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_24').style.opacity = 0;\"\n",
" >5 is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.038 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_25'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_25').style.opacity = 0;\"\n",
" >to Star Trek </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015 / 4</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_26'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_26').style.opacity = 0;\"\n",
" >(the original)</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_27'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_27').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002 / 5</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_28'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_28').style.opacity = 0;\"\n",
" >Silly prosthetics</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_29'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_29').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.022 / 4</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_30'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.07771836007130117)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_30').style.opacity = 0;\"\n",
" >cheap cardboard sets, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016 / 4</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_31'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_31').style.opacity = 0;\"\n",
" >stilted dialogues, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_32'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.022539116656763607)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_32').style.opacity = 0;\"\n",
" >CG that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_33'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_33').style.opacity = 0;\"\n",
" >doesn'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_34'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_34').style.opacity = 0;\"\n",
" >t </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_35').style.opacity = 0;\"\n",
" >match the background</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_36'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_36').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_37'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_37').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.028 / 4</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_38'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_38').style.opacity = 0;\"\n",
" >painfully one-dimensional </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_39'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_39').style.opacity = 0;\"\n",
" >characters </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.022539116656763607)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_40').style.opacity = 0;\"\n",
" >cannot </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01 / 3</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_41'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_41').style.opacity = 0;\"\n",
" >be overcome with </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013 / 8</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_42'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_42').style.opacity = 0;\"\n",
" >a 'sci-fi' setting. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_43'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_43').style.opacity = 0;\"\n",
" >(</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_44'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06983561101208159)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_44').style.opacity = 0;\"\n",
" >I</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_45'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_45').style.opacity = 0;\"\n",
" >'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.03 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_46'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10924935630817992)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_46').style.opacity = 0;\"\n",
" >m sure </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_47'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_47').style.opacity = 0;\"\n",
" >there are </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002 / 2</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_48'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_48').style.opacity = 0;\"\n",
" >those of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_49'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_49').style.opacity = 0;\"\n",
" >you </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_50'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_50').style.opacity = 0;\"\n",
" >out </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.037</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_51'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1328976034858387)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_51').style.opacity = 0;\"\n",
" >there </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.049</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_52'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.18019409784115656)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_52').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_53'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_53').style.opacity = 0;\"\n",
" >think </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_54'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_54').style.opacity = 0;\"\n",
" >Babylon </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_55'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_55').style.opacity = 0;\"\n",
" >5 </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.028</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_56'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_56').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.268</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_57'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(1.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_57').style.opacity = 0;\"\n",
" >good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.059</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_58'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_58').style.opacity = 0;\"\n",
" >sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.014</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_59'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_59').style.opacity = 0;\"\n",
" >-</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.039</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_60'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_60').style.opacity = 0;\"\n",
" >fi</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
" ><div id='_tp_rlgyqtnpfskgotjurlgv_ind_61'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 1; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 0; document.getElementById('_fs_rlgyqtnpfskgotjurlgv_ind_61').style.opacity = 0;\"\n",
" ></div></div></div>\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.84395337721362%\" y1=\"33\" x2=\"48.84395337721362%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.84395337721362%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"32.64848281910032%\" y1=\"33\" x2=\"32.64848281910032%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.64848281910032%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"16.453012260987034%\" y1=\"33\" x2=\"16.453012260987034%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.453012260987034%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"65.03942393532692%\" y1=\"33\" x2=\"65.03942393532692%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.03942393532692%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"81.2348944934402%\" y1=\"33\" x2=\"81.2348944934402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.2348944934402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1.3</text><line x1=\"35.95079975086424%\" y1=\"33\" x2=\"35.95079975086424%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.95079975086424%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.461171</text><text x=\"35.95079975086424%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.461171</text><text x=\"35.95079975086424%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"64.04919970928674%\" y1=\"33\" x2=\"64.04919970928674%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.04919970928674%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.981657</text><text x=\"64.04919970928674%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.981657</text><text x=\"64.04919970928674%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"8.333333288345916%\" width=\"55.71586642094083%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"55.189973478795274%\" x2=\"64.04919970928674%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"59.61958659404101%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.164</text><svg x=\"55.189973478795274%\" y=\"40\" height=\"20\" width=\"8.859226230491466%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Worth</text> </svg></svg><line x1=\"48.972622270411044%\" x2=\"55.189973478795274%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_46\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"52.08129787460316%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_46\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.115</text><svg x=\"48.972622270411044%\" y=\"40\" height=\"20\" width=\"6.21735120838423%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">interesting</text> </svg></svg><line x1=\"44.3629357642165%\" x2=\"48.972622270411044%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_28\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"46.66777901731378%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_28\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.085</text><svg x=\"44.3629357642165%\" y=\"40\" height=\"20\" width=\"4.609686506194542%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertaining</text> </svg></svg><line x1=\"40.263775223494925%\" x2=\"44.3629357642165%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_47\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"42.31335549385571%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_47\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.076</text><svg x=\"40.263775223494925%\" y=\"40\" height=\"20\" width=\"4.099160540721577%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">by</text> </svg></svg><line x1=\"36.23135348618465%\" x2=\"40.263775223494925%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"38.24756435483979%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.075</text><svg x=\"36.23135348618465%\" y=\"40\" height=\"20\" width=\"4.032421737310273%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertainment</text> </svg></svg><line x1=\"33.61462914590648%\" x2=\"36.23135348618465%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_27\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"34.92299131604557%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_27\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.048</text><svg x=\"33.61462914590648%\" y=\"40\" height=\"20\" width=\"2.616724340278175%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"31.068050431870113%\" x2=\"33.61462914590648%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_45\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"32.34133978888829%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_45\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.047</text><svg x=\"31.068050431870113%\" y=\"40\" height=\"20\" width=\"2.5465787140363645%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is made</text> </svg></svg><line x1=\"28.756794901972558%\" x2=\"31.068050431870113%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"29.912422666921337%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.043</text><svg x=\"28.756794901972558%\" y=\"40\" height=\"20\" width=\"2.3112555298975543%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the</text> </svg></svg><line x1=\"26.7873518618485%\" x2=\"28.756794901972558%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"27.77207338191053%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.036</text><svg x=\"26.7873518618485%\" y=\"40\" height=\"20\" width=\"1.9694430401240588%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"24.86834364820001%\" x2=\"26.7873518618485%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.827847755024255%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.036</text><svg x=\"24.86834364820001%\" y=\"40\" height=\"20\" width=\"1.919008213648489%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">action movies</text> </svg></svg><line x1=\"23.199820159722233%\" x2=\"24.86834364820001%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_8\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"24.034081903961123%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_8\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.031</text><svg x=\"23.199820159722233%\" y=\"40\" height=\"20\" width=\"1.6685234884777778%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you</text> </svg></svg><line x1=\"21.609490180007356%\" x2=\"23.199820159722233%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.404655169864796%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"21.609490180007356%\" y=\"40\" height=\"20\" width=\"1.5903299797148769%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Damme kick style,</text> </svg></svg><line x1=\"20.185269451049038%\" x2=\"21.609490180007356%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_16\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.897379815528197%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_16\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.026</text><svg x=\"20.185269451049038%\" y=\"40\" height=\"20\" width=\"1.4242207289583177%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">fights with the great Van</text> </svg></svg><line x1=\"19.12652939745304%\" x2=\"20.185269451049038%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_26\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"19.65589942425104%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_26\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"19.12652939745304%\" y=\"40\" height=\"20\" width=\"1.0587400535959972%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">this</text> </svg></svg><line x1=\"18.086824747450898%\" x2=\"19.12652939745304%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_9\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.60667707245197%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_9\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"18.086824747450898%\" y=\"40\" height=\"20\" width=\"1.0397046500021432%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">like</text> </svg></svg><line x1=\"17.073046415146724%\" x2=\"18.086824747450898%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_29\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"17.579935581298813%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_29\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"17.073046415146724%\" y=\"40\" height=\"20\" width=\"1.0137783323041738%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"16.11212010327564%\" x2=\"17.073046415146724%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_30\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.59258325921118%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_30\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.018</text><svg x=\"16.11212010327564%\" y=\"40\" height=\"20\" width=\"0.9609263118710842%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">competently</text> </svg></svg><line x1=\"15.183718324141259%\" x2=\"16.11212010327564%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.647919213708448%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.017</text><svg x=\"15.183718324141259%\" y=\"40\" height=\"20\" width=\"0.928401779134381%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"14.30509485131558%\" x2=\"15.183718324141259%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_48\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"14.74440658772842%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_48\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"14.30509485131558%\" y=\"40\" height=\"20\" width=\"0.8786234728256783%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the inclusion</text> </svg></svg><line x1=\"13.519151369913319%\" x2=\"14.30509485131558%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_13\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.912123110614449%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_13\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"13.519151369913319%\" y=\"40\" height=\"20\" width=\"0.7859434814022617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">features the</text> </svg></svg><line x1=\"12.82443824701779%\" x2=\"13.519151369913319%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_43\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.171794808465554%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_43\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.013</text><svg x=\"12.82443824701779%\" y=\"40\" height=\"20\" width=\"0.6947131228955286%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">&lt;br /&gt;&lt;br /&gt;</text> </svg></svg><line x1=\"12.234115549607434%\" x2=\"12.82443824701779%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_6\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"12.529276898312613%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_6\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.011</text><svg x=\"12.234115549607434%\" y=\"40\" height=\"20\" width=\"0.5903226974103557%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">especially</text> </svg></svg><line x1=\"11.749498803602862%\" x2=\"12.234115549607434%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.991807176605148%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"11.749498803602862%\" y=\"40\" height=\"20\" width=\"0.4846167460045727%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">This one</text> </svg></svg><line x1=\"11.271235437616252%\" x2=\"11.749498803602862%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_51\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.510367120609557%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_51\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"11.271235437616252%\" y=\"40\" height=\"20\" width=\"0.47826336598661%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">which is clever but</text> </svg></svg><line x1=\"10.794607103874343%\" x2=\"11.271235437616252%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_39\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.032921270745298%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_39\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"10.794607103874343%\" y=\"40\" height=\"20\" width=\"0.4766283337419086%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you'</text> </svg></svg><line x1=\"10.435837255405204%\" x2=\"10.794607103874343%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_5\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.615222179639773%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_5\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.007</text><svg x=\"10.435837255405204%\" y=\"40\" height=\"20\" width=\"0.35876984846913906%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"10.077821482459887%\" x2=\"10.435837255405204%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_31\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.256829368932546%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_31\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.007</text><svg x=\"10.077821482459887%\" y=\"40\" height=\"20\" width=\"0.3580157729453166%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">handled</text> </svg></svg><line x1=\"9.751669761171309%\" x2=\"10.077821482459887%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_42\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.914745621815598%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_42\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"9.751669761171309%\" y=\"40\" height=\"20\" width=\"0.3261517212885785%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"9.446026727176603%\" x2=\"9.751669761171309%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_21\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.598848244173956%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_21\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"9.446026727176603%\" y=\"40\" height=\"20\" width=\"0.3056430339947056%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"9.228236670179024%\" x2=\"9.446026727176603%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_24\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.337131698677814%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_24\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"9.228236670179024%\" y=\"40\" height=\"20\" width=\"0.21779005699757903%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"9.013406742898747%\" x2=\"9.228236670179024%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.120821706538885%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"9.013406742898747%\" y=\"40\" height=\"20\" width=\"0.2148299272802774%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"8.840030113752272%\" x2=\"9.013406742898747%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_25\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.92671842832551%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_25\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.840030113752272%\" y=\"40\" height=\"20\" width=\"0.17337662914647467%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">All of</text> </svg></svg><line x1=\"8.680293513382214%\" x2=\"8.840030113752272%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_44\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.760161813567244%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_44\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.680293513382214%\" y=\"40\" height=\"20\" width=\"0.1597366003700582%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">The plot</text> </svg></svg><line x1=\"8.542960973422874%\" x2=\"8.680293513382214%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_40\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.611627243402545%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_40\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.542960973422874%\" y=\"40\" height=\"20\" width=\"0.13733253995934014%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">ve seen</text> </svg></svg><line x1=\"8.458590118240974%\" x2=\"8.542960973422874%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_38\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.500775545831925%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_38\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.458590118240974%\" y=\"40\" height=\"20\" width=\"0.08437085518190024%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you away if</text> </svg></svg><line x1=\"8.384042214406824%\" x2=\"8.458590118240974%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_14\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.421316166323898%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_14\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.384042214406824%\" y=\"40\" height=\"20\" width=\"0.07454790383414966%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">usual car chases</text> </svg></svg><line x1=\"8.333333288345916%\" x2=\"8.384042214406824%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.358687751376369%\" y=\"71\" font-size=\"12px\" id=\"_fs_plxudykuzwkonmckhubf_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.333333288345916%\" y=\"40\" height=\"20\" width=\"0.050708926060908155%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">shooting battles with the</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.384042214406824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"64.04919970928674%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333288345916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"64.04919970928674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"55.189973478795274%\" y=\"40\" height=\"20\" width=\"8.859226230491466%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_1').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_1').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_1').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"55.189973478795274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"48.972622270411044%\" y=\"40\" height=\"20\" width=\"6.21735120838423%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_46').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_46').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_46').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_46').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_46').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_46').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"48.972622270411044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"44.3629357642165%\" y=\"40\" height=\"20\" width=\"4.609686506194542%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_28').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_28').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_28').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"44.3629357642165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"40.263775223494925%\" y=\"40\" height=\"20\" width=\"4.099160540721577%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_47').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_47').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_47').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_47').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_47').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_47').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"40.263775223494925%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"36.23135348618465%\" y=\"40\" height=\"20\" width=\"4.032421737310273%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_3').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_3').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_3').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"36.23135348618465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.61462914590648%\" y=\"40\" height=\"20\" width=\"2.616724340278175%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_27').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_27').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_27').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.61462914590648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"31.068050431870113%\" y=\"40\" height=\"20\" width=\"2.5465787140363645%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_45').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_45').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_45').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_45').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_45').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_45').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"31.068050431870113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.756794901972558%\" y=\"40\" height=\"20\" width=\"2.3112555298975543%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_2').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_2').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_2').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"28.756794901972558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.7873518618485%\" y=\"40\" height=\"20\" width=\"1.9694430401240588%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_11').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_11').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_11').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.7873518618485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.86834364820001%\" y=\"40\" height=\"20\" width=\"1.919008213648489%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_10').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_10').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_10').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.86834364820001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.199820159722233%\" y=\"40\" height=\"20\" width=\"1.6685234884777778%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_8').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_8').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_8').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.199820159722233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.609490180007356%\" y=\"40\" height=\"20\" width=\"1.5903299797148769%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_17').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_17').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_17').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.609490180007356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.185269451049038%\" y=\"40\" height=\"20\" width=\"1.4242207289583177%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_16').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_16').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_16').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.185269451049038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.12652939745304%\" y=\"40\" height=\"20\" width=\"1.0587400535959972%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_26').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_26').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_26').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.12652939745304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.086824747450898%\" y=\"40\" height=\"20\" width=\"1.0397046500021432%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_9').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_9').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_9').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.086824747450898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.073046415146724%\" y=\"40\" height=\"20\" width=\"1.0137783323041738%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_29').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_29').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_29').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.073046415146724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.11212010327564%\" y=\"40\" height=\"20\" width=\"0.9609263118710842%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_30').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_30').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_30').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.11212010327564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.183718324141259%\" y=\"40\" height=\"20\" width=\"0.928401779134381%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_0').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_0').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_0').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.183718324141259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.30509485131558%\" y=\"40\" height=\"20\" width=\"0.8786234728256783%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_48').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_48').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_48').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_48').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_48').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_48').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.30509485131558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.519151369913319%\" y=\"40\" height=\"20\" width=\"0.7859434814022617%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_13').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_13').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_13').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.519151369913319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.82443824701779%\" y=\"40\" height=\"20\" width=\"0.6947131228955286%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_43').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_43').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_43').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_43').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_43').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_43').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.82443824701779%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.234115549607434%\" y=\"40\" height=\"20\" width=\"0.5903226974103557%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_6').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_6').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_6').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.234115549607434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.749498803602862%\" y=\"40\" height=\"20\" width=\"0.4846167460045727%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_12').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_12').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_12').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.749498803602862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.271235437616252%\" y=\"40\" height=\"20\" width=\"0.47826336598661%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_51').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_51').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_51').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_51').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_51').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_51').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.271235437616252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.794607103874343%\" y=\"40\" height=\"20\" width=\"0.4766283337419086%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_39').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_39').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_39').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.794607103874343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.435837255405204%\" y=\"40\" height=\"20\" width=\"0.35876984846913906%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_5').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_5').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_5').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.435837255405204%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.077821482459887%\" y=\"40\" height=\"20\" width=\"0.3580157729453166%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_31').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_31').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_31').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.077821482459887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.751669761171309%\" y=\"40\" height=\"20\" width=\"0.3261517212885785%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_42').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_42').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_42').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_42').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_42').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_42').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.751669761171309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.446026727176603%\" y=\"40\" height=\"20\" width=\"0.3056430339947056%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_21').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_21').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_21').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.446026727176603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.228236670179024%\" y=\"40\" height=\"20\" width=\"0.21779005699757903%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_24').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_24').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_24').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.228236670179024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.013406742898747%\" y=\"40\" height=\"20\" width=\"0.2148299272802774%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_15').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_15').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_15').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.013406742898747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.840030113752272%\" y=\"40\" height=\"20\" width=\"0.17337662914647467%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_25').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_25').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_25').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.840030113752272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.680293513382214%\" y=\"40\" height=\"20\" width=\"0.1597366003700582%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_44').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_44').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_44').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_44').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_44').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_44').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.680293513382214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.542960973422874%\" y=\"40\" height=\"20\" width=\"0.13733253995934014%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_40').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_40').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_40').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.542960973422874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.458590118240974%\" y=\"40\" height=\"20\" width=\"0.08437085518190024%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_38').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_38').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_38').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.458590118240974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.384042214406824%\" y=\"40\" height=\"20\" width=\"0.07454790383414966%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_14').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_14').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_14').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333288345916%\" y=\"40\" height=\"20\" width=\"0.050708926060908155%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_18').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_18').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_18').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"64.04919970928674%\" width=\"27.617466462518326%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"64.04919970928674%\" x2=\"70.18454428532223%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_32\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"67.11687199730449%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_32\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.114</text><svg x=\"64.04919970928674%\" y=\"40\" height=\"20\" width=\"6.135344576035493%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"70.18454428532223%\" x2=\"76.18007371659839%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_34\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"73.18230900096032%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_34\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.111</text><svg x=\"70.18454428532223%\" y=\"40\" height=\"20\" width=\"5.995529431276154%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">nothing</text> </svg></svg><line x1=\"76.18007371659839%\" x2=\"79.08886519557821%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"77.6344694560883%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.054</text><svg x=\"76.18007371659839%\" y=\"40\" height=\"20\" width=\"2.908791478979822%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">really</text> </svg></svg><line x1=\"79.08886519557821%\" x2=\"80.99006670255655%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_52\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"80.03946594906738%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_52\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.035</text><svg x=\"79.08886519557821%\" y=\"40\" height=\"20\" width=\"1.9012015069783388%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hardly</text> </svg></svg><line x1=\"80.99006670255655%\" x2=\"82.74746756605411%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.86876713430533%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"80.99006670255655%\" y=\"40\" height=\"20\" width=\"1.7574008634975655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">that</text> </svg></svg><line x1=\"82.74746756605411%\" x2=\"84.432685544347%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_19\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.59007655520055%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.031</text><svg x=\"82.74746756605411%\" y=\"40\" height=\"20\" width=\"1.685217978292883%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">40 shell load shotgun</text> </svg></svg><line x1=\"84.432685544347%\" x2=\"85.67126310009839%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_49\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.05197432222269%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_49\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"84.432685544347%\" y=\"40\" height=\"20\" width=\"1.238577555751391%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">of a rabbit</text> </svg></svg><line x1=\"85.67126310009839%\" x2=\"86.6370397346646%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_53\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"86.15415141738148%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_53\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.018</text><svg x=\"85.67126310009839%\" y=\"40\" height=\"20\" width=\"0.9657766345662111%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">profound</text> </svg></svg><line x1=\"86.6370397346646%\" x2=\"87.48241992064477%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_54\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.05972982765468%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_54\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"86.6370397346646%\" y=\"40\" height=\"20\" width=\"0.8453801859801757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"87.48241992064477%\" x2=\"88.28366704103256%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.88304348083867%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"87.48241992064477%\" y=\"40\" height=\"20\" width=\"0.8012471203877851%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">style bombs</text> </svg></svg><line x1=\"88.28366704103256%\" x2=\"89.07176298724956%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_22\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.67771501414106%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"88.28366704103256%\" y=\"40\" height=\"20\" width=\"0.7880959462169983%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">even terrorist</text> </svg></svg><line x1=\"89.07176298724956%\" x2=\"89.8515501758764%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_50\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.46165658156298%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_50\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"89.07176298724956%\" y=\"40\" height=\"20\" width=\"0.779787188626841%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"89.8515501758764%\" x2=\"90.48361374533778%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_33\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.1675819606071%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_33\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.012</text><svg x=\"89.8515501758764%\" y=\"40\" height=\"20\" width=\"0.6320635694613799%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there is</text> </svg></svg><line x1=\"90.48361374533778%\" x2=\"90.83304012505108%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_55\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.65832693519442%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_55\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"90.48361374533778%\" y=\"40\" height=\"20\" width=\"0.34942637971330726%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Many of</text> </svg></svg><line x1=\"90.83304012505108%\" x2=\"91.12169907793448%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_56\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.97736960149278%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_56\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"90.83304012505108%\" y=\"40\" height=\"20\" width=\"0.28865895288339516%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the c</text> </svg></svg><line x1=\"91.12169907793448%\" x2=\"91.31215104788133%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_20\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.2169250629079%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"91.12169907793448%\" y=\"40\" height=\"20\" width=\"0.19045196994684943%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"91.31215104788133%\" x2=\"91.4454265538661%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_37\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.3787888008737%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_37\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.31215104788133%\" y=\"40\" height=\"20\" width=\"0.1332755059847699%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">blows</text> </svg></svg><line x1=\"91.4454265538661%\" x2=\"91.56184691816595%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_4\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.50363673601603%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.4454265538661%\" y=\"40\" height=\"20\" width=\"0.1164203642998558%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">value of a rental</text> </svg></svg><line x1=\"91.56184691816595%\" x2=\"91.64125438630207%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_41\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.60155065223401%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_41\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.56184691816595%\" y=\"40\" height=\"20\" width=\"0.07940746813611099%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">your share before</text> </svg></svg><line x1=\"91.64125438630207%\" x2=\"91.66666617180508%\" y1=\"60\" y2=\"60\" id=\"_fb_plxudykuzwkonmckhubf_ind_7\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.65396027905356%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_plxudykuzwkonmckhubf_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.64125438630207%\" y=\"40\" height=\"20\" width=\"0.025411785503010265%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">if</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"64.04919970928674%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666617180508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"70.18454428532223%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"64.04919970928674%\" y=\"40\" height=\"20\" width=\"6.135344576035493%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_32').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_32').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_32').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.18007371659839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.18454428532223%\" y=\"40\" height=\"20\" width=\"5.995529431276154%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_34').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_34').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_34').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.08886519557821%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.18007371659839%\" y=\"40\" height=\"20\" width=\"2.908791478979822%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_36').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_36').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_36').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.99006670255655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.08886519557821%\" y=\"40\" height=\"20\" width=\"1.9012015069783388%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_52').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_52').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_52').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_52').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_52').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_52').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.74746756605411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.99006670255655%\" y=\"40\" height=\"20\" width=\"1.7574008634975655%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_35').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_35').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_35').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.432685544347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.74746756605411%\" y=\"40\" height=\"20\" width=\"1.685217978292883%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_19').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_19').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_19').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.67126310009839%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.432685544347%\" y=\"40\" height=\"20\" width=\"1.238577555751391%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_49').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_49').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_49').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_49').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_49').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_49').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.6370397346646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.67126310009839%\" y=\"40\" height=\"20\" width=\"0.9657766345662111%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_53').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_53').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_53').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_53').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_53').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_53').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.48241992064477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.6370397346646%\" y=\"40\" height=\"20\" width=\"0.8453801859801757%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_54').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_54').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_54').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_54').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_54').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_54').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.28366704103256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.48241992064477%\" y=\"40\" height=\"20\" width=\"0.8012471203877851%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_23').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_23').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_23').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.07176298724956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.28366704103256%\" y=\"40\" height=\"20\" width=\"0.7880959462169983%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_22').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_22').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_22').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.8515501758764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.07176298724956%\" y=\"40\" height=\"20\" width=\"0.779787188626841%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_50').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_50').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_50').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_50').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_50').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_50').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.48361374533778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.8515501758764%\" y=\"40\" height=\"20\" width=\"0.6320635694613799%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_33').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_33').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_33').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.83304012505108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.48361374533778%\" y=\"40\" height=\"20\" width=\"0.34942637971330726%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_55').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_55').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_55').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_55').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_55').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_55').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.12169907793448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.83304012505108%\" y=\"40\" height=\"20\" width=\"0.28865895288339516%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_56').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_56').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_56').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_56').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_56').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_56').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.31215104788133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.12169907793448%\" y=\"40\" height=\"20\" width=\"0.19045196994684943%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_20').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_20').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_20').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.4454265538661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.31215104788133%\" y=\"40\" height=\"20\" width=\"0.1332755059847699%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_37').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_37').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_37').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.56184691816595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.4454265538661%\" y=\"40\" height=\"20\" width=\"0.1164203642998558%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_4').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_4').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_4').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.64125438630207%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.56184691816595%\" y=\"40\" height=\"20\" width=\"0.07940746813611099%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_41').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_41').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_41').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.64125438630207%\" y=\"40\" height=\"20\" width=\"0.025411785503010265%\" onmouseover=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_7').style.opacity = 1;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_plxudykuzwkonmckhubf_ind_7').style.textDecoration = 'none';document.getElementById('_fs_plxudykuzwkonmckhubf_ind_7').style.opacity = 0;document.getElementById('_fb_plxudykuzwkonmckhubf_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.017</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_0').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_0').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_0').style.opacity = 0;\"\n",
" ></div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.164</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.6137452960982372)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_1').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_1').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_1').style.opacity = 0;\"\n",
" >Worth </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.043</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_2').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_2').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_2').style.opacity = 0;\"\n",
" >the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.075</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2747870865517925)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_3').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_3').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_3').style.opacity = 0;\"\n",
" >entertainment </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002 / 4</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_4'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_4').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_4').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_4').style.opacity = 0;\"\n",
" >value of a rental</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.007</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_5'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.02253911665676371)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_5').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_5').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_5').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.011</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_6'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.03830461477520289)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_6').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_6').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_6').style.opacity = 0;\"\n",
" >especially </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_7'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_7').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_7').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_7').style.opacity = 0;\"\n",
" >if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.031</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_8'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10924935630817992)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_8').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_8').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_8').style.opacity = 0;\"\n",
" >you </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_9'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06983561101208159)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_9').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_9').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_9').style.opacity = 0;\"\n",
" >like </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.036 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_10'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_10').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_10').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_10').style.opacity = 0;\"\n",
" >action movies</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.036</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.13289760348583876)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_11').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_11').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_11').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_12').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_12').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_12').style.opacity = 0;\"\n",
" >This one </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_13'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_13').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_13').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_13').style.opacity = 0;\"\n",
" >features the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001 / 3</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_14'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_14').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_14').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_14').style.opacity = 0;\"\n",
" >usual car chases</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_15').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_15').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_15').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.026 / 5</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_16'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_16').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_16').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_16').style.opacity = 0;\"\n",
" >fights with the great Van </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029 / 5</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10924935630817992)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_17').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_17').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_17').style.opacity = 0;\"\n",
" >Damme kick style, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001 / 4</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_18'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_18').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_18').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_18').style.opacity = 0;\"\n",
" >shooting battles with the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.031 / 4</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_19'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10924935630817977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_19').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_19').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_19').style.opacity = 0;\"\n",
" >40 shell load shotgun</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_20'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_20').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_20').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_20').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_21'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_21').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_21').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_21').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_22'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_22').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_22').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_22').style.opacity = 0;\"\n",
" >even terrorist </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_23').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_23').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_23').style.opacity = 0;\"\n",
" >style bombs</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_24'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_24').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_24').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_24').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_25'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_25').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_25').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_25').style.opacity = 0;\"\n",
" >All of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_26'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06983561101208159)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_26').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_26').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_26').style.opacity = 0;\"\n",
" >this </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.048</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_27'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_27').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_27').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_27').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.085</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_28'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3142008318478907)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_28').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_28').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_28').style.opacity = 0;\"\n",
" >entertaining </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_29'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_29').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_29').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_29').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.018 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_30'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_30').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_30').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_30').style.opacity = 0;\"\n",
" >competently </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.007</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_31'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.02253911665676371)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_31').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_31').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_31').style.opacity = 0;\"\n",
" >handled </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.114</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_32'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.42455931867696567)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_32').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_32').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_32').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.012 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_33'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_33').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_33').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_33').style.opacity = 0;\"\n",
" >there is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.111</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_34'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.4087938205585264)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_34').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_34').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_34').style.opacity = 0;\"\n",
" >nothing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.11713210536739943)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_35').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_35').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_35').style.opacity = 0;\"\n",
" >that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.054</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_36'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_36').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_36').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_36').style.opacity = 0;\"\n",
" >really </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_37'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.006773618538324436)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_37').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_37').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_37').style.opacity = 0;\"\n",
" >blows </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002 / 3</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_38'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_38').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_38').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_38').style.opacity = 0;\"\n",
" >you away if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_39'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_39').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_39').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_39').style.opacity = 0;\"\n",
" >you'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_40'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_40').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_40').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_40').style.opacity = 0;\"\n",
" >ve seen </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001 / 3</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_41'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_41').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_41').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_41').style.opacity = 0;\"\n",
" >your share before</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_42'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_42').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_42').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_42').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_42').style.opacity = 0;\"\n",
" >.</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.013 / 8</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_43'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_43').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_43').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_43').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_43').style.opacity = 0;\"\n",
" >&lt;br /&gt;&lt;br /&gt;</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_44'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_44').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_44').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_44').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_44').style.opacity = 0;\"\n",
" >The plot </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.047 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_45'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.17231134878193693)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_45').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_45').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_45').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_45').style.opacity = 0;\"\n",
" >is made </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.115</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_46'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.4245593186769657)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_46').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_46').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_46').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_46').style.opacity = 0;\"\n",
" >interesting </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.076</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_47'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2826698356110118)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_47').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_47').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_47').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_47').style.opacity = 0;\"\n",
" >by </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_48'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_48').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_48').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_48').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_48').style.opacity = 0;\"\n",
" >the inclusion </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023 / 3</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_49'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.07771836007130117)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_49').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_49').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_49').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_49').style.opacity = 0;\"\n",
" >of a rabbit</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_50'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_50').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_50').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_50').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_50').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009 / 4</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_51'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_51').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_51').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_51').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_51').style.opacity = 0;\"\n",
" >which is clever but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.035</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_52'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.12501485442661905)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_52').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_52').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_52').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_52').style.opacity = 0;\"\n",
" >hardly </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.018</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_53'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06195286195286191)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_53').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_53').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_53').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_53').style.opacity = 0;\"\n",
" >profound</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_54'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_54').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_54').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_54').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_54').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006 / 2</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_55'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.022539116656763607)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_55').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_55').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_55').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_55').style.opacity = 0;\"\n",
" >Many of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005 / 3</div\n",
" ><div id='_tp_plxudykuzwkonmckhubf_ind_56'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_56').style.opacity = 1; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_56').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_plxudykuzwkonmckhubf_ind_56').style.opacity = 0; document.getElementById('_fs_plxudykuzwkonmckhubf_ind_56').style.opacity = 0;\"\n",
" >the c</div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Visualize contribution of each word to the prediction for the \"POSITIVE\" class\n",
"shap.plots.text(shap_values[:, :, \"POSITIVE\"])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Wrap the pipeline manually\n",
"\n",
"SHAP explanations operate best in additive feature spaces. Since probabilities are not additive, we convert them into logits (log-odds). This ensures that SHAP values correctly sum up to the model output."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Create a TransformersPipeline wrapper"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"pmodel = shap.models.TransformersPipeline(classifier, rescale_to_logits=False)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[0.07581914, 0.92418081],\n",
" [0.01834262, 0.98165739]])"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pmodel(short_data[:2])"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-2.50055699, 2.50055625],\n",
" [-3.98001525, 3.98001536]])"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pmodel = shap.models.TransformersPipeline(classifier, rescale_to_logits=True)\n",
"pmodel(short_data[:2])"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"PartitionExplainer explainer: 3it [00:17, 17.59s/it] \n"
]
},
{
"data": {
"text/html": [
"\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"43.7320020077122%\" y1=\"33\" x2=\"43.7320020077122%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.7320020077122%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"56.26799794675968%\" y1=\"33\" x2=\"56.26799794675968%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"8.333333329539322%\" width=\"47.934664617220356%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"49.67614168127722%\" x2=\"56.26799794675968%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_13\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"52.972069814018454%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_13\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.448</text><svg x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">it is to good</text> </svg></svg><line x1=\"43.2033434377326%\" x2=\"49.67614168127722%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_43\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"46.43974255950491%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_43\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.422</text><svg x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">good</text> </svg></svg><line x1=\"37.711110961113164%\" x2=\"43.2033434377326%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_16\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.45722719942288%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_16\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.206</text><svg x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">as Babylon 5 is</text> </svg></svg><line x1=\"33.553756805256896%\" x2=\"37.711110961113164%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_14\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"35.63243388318503%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_14\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.913</text><svg x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">TV sci</text> </svg></svg><line x1=\"30.094792055946918%\" x2=\"33.553756805256896%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.824274430601907%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.76</text><svg x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"26.847581091775016%\" x2=\"30.094792055946918%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.47118657386097%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.713</text><svg x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"23.837346949045894%\" x2=\"26.847581091775016%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.342464020410453%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.661</text><svg x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to Star Trek</text> </svg></svg><line x1=\"21.25714576047099%\" x2=\"23.837346949045894%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.547246354758443%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.567</text><svg x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I love sci</text> </svg></svg><line x1=\"19.188784601053072%\" x2=\"21.25714576047099%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_44\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.22296518076203%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_44\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.454</text><svg x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">sci</text> </svg></svg><line x1=\"17.240071412219883%\" x2=\"19.188784601053072%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_45\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.214428006636478%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_45\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.428</text><svg x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"15.321687242547771%\" x2=\"17.240071412219883%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.28087932738383%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.421</text><svg x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(the original).</text> </svg></svg><line x1=\"13.566650415345944%\" x2=\"15.321687242547771%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"14.444168828946857%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi and</text> </svg></svg><line x1=\"12.445940531349018%\" x2=\"13.566650415345944%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.006295473347482%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.246</text><svg x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">m sure</text> </svg></svg><line x1=\"11.402021260502215%\" x2=\"12.445940531349018%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.923980895925617%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.229</text><svg x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I'</text> </svg></svg><line x1=\"10.406181392863692%\" x2=\"11.402021260502215%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.904101326682953%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.219</text><svg x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">up with a lot.</text> </svg></svg><line x1=\"9.634718414609758%\" x2=\"10.406181392863692%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.020449903736726%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">am willing to put</text> </svg></svg><line x1=\"8.892794067207978%\" x2=\"9.634718414609758%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.263756240908869%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.163</text><svg x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I really did,</text> </svg></svg><line x1=\"8.536298355624186%\" x2=\"8.892794067207978%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_42\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.714546211416081%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_42\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.078</text><svg x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"8.380046118840536%\" x2=\"8.536298355624186%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.458172237232361%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.034</text><svg x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">5</text> </svg></svg><line x1=\"8.341575058286308%\" x2=\"8.380046118840536%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.360810588563421%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"8.333333329539322%\" x2=\"8.341575058286308%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_46\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.337454193912816%\" y=\"71\" font-size=\"12px\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_46\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333329539322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"56.26799794675968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_13').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_43').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_43').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_16').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_14').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_12').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_15').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_17').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_0').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_44').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_44').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_45').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_45').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_18').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_1').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_33').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_32').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_3').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_2').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_11').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_42').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_42').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_41').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_10').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_46').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_46').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"56.26799794675968%\" width=\"35.39866867817288%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"56.26799794675968%\" x2=\"59.275429656453724%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_29\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"57.7717138016067%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_29\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.661</text><svg x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">characters cannot be overcome with</text> </svg></svg><line x1=\"59.275429656453724%\" x2=\"62.046557156749806%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_20\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"60.66099340660176%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.609</text><svg x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cheap cardboard sets,</text> </svg></svg><line x1=\"62.046557156749806%\" x2=\"64.52107758828315%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"63.28381737251648%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.544</text><svg x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"64.52107758828315%\" x2=\"66.87807542999094%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"65.69957650913705%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.518</text><svg x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">painfully one</text> </svg></svg><line x1=\"66.87807542999094%\" x2=\"69.20796926786328%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"68.04302234892711%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.512</text><svg x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">doesn't</text> </svg></svg><line x1=\"69.20796926786328%\" x2=\"71.45588648576015%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"70.3319278768117%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.494</text><svg x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">match the background</text> </svg></svg><line x1=\"71.45588648576015%\" x2=\"73.69247749637248%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"72.57418199106631%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.491</text><svg x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-dimensional</text> </svg></svg><line x1=\"73.69247749637248%\" x2=\"75.81943965261523%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_21\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"74.75595857449386%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.467</text><svg x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">stilted dialogues,</text> </svg></svg><line x1=\"75.81943965261523%\" x2=\"77.69626510386736%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_6\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"76.7578523782413%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.412</text><svg x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">under-</text> </svg></svg><line x1=\"77.69626510386736%\" x2=\"79.44178473733054%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_8\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"78.56902492059895%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.383</text><svg x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and misunderstood.</text> </svg></svg><line x1=\"79.44178473733054%\" x2=\"81.0229599597059%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_7\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"80.23237234851823%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.347</text><svg x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">appreciated</text> </svg></svg><line x1=\"81.0229599597059%\" x2=\"82.58351663759066%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_38\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.80323829864828%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_38\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.343</text><svg x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"82.58351663759066%\" x2=\"83.87896621635889%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_37\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.23124142697478%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_37\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.285</text><svg x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there</text> </svg></svg><line x1=\"83.87896621635889%\" x2=\"85.14929829372397%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_22\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.51413225504143%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.279</text><svg x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">CG that</text> </svg></svg><line x1=\"85.14929829372397%\" x2=\"86.31918152946486%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.73423991159441%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.257</text><svg x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"86.31918152946486%\" x2=\"87.30223989482252%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_19\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"86.81071071214369%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.216</text><svg x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Silly prosthetics,</text> </svg></svg><line x1=\"87.30223989482252%\" x2=\"88.21245708395374%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.75734848938814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.2</text><svg x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">underfunded,</text> </svg></svg><line x1=\"88.21245708395374%\" x2=\"89.06665257796793%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_30\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.63955483096083%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_30\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.188</text><svg x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a 'sci-fi' setting.</text> </svg></svg><line x1=\"89.06665257796793%\" x2=\"89.68348571061456%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_4\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.37506914429125%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.135</text><svg x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Sci-fi movies/TV are usually</text> </svg></svg><line x1=\"89.68348571061456%\" x2=\"90.23609339323937%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_34\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.95978955192697%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_34\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there are</text> </svg></svg><line x1=\"90.23609339323937%\" x2=\"90.64601208963519%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.44105274143729%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.09</text><svg x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">think</text> </svg></svg><line x1=\"90.64601208963519%\" x2=\"90.99374442406791%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.81987825685155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.076</text><svg x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">those of</text> </svg></svg><line x1=\"90.99374442406791%\" x2=\"91.28583328089098%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.13978885247946%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.064</text><svg x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you out</text> </svg></svg><line x1=\"91.28583328089098%\" x2=\"91.47111924456763%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_9\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.37847626272931%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.041</text><svg x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I tried to like this</text> </svg></svg><line x1=\"91.47111924456763%\" x2=\"91.62000338012096%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.54556131234429%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Babylon</text> </svg></svg><line x1=\"91.62000338012096%\" x2=\"91.66666662493253%\" y1=\"60\" y2=\"60\" id=\"_fb_vptbrvbpxdfmthxwzmgx_ind_31\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.64333500252675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_vptbrvbpxdfmthxwzmgx_ind_31\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666662493256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_29').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_20').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_26').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_27').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_23').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_24').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_28').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_21').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_6').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_8').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_7').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_38').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_37').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_22').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_25').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_19').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_5').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_30').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_4').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_34').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_39').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_35').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_36').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_9').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_40').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\" onmouseover=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 1;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vptbrvbpxdfmthxwzmgx_ind_31').style.textDecoration = 'none';document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 0;document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.567 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.32208358090711037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_0').style.opacity = 0;\"\n",
" >I love sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_1').style.opacity = 0;\"\n",
" >-fi and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_2').style.opacity = 0;\"\n",
" >am willing to put </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.219 / 5</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_3').style.opacity = 0;\"\n",
" >up with a lot. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.135 / 8</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_4'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06983561101208147)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_4').style.opacity = 0;\"\n",
" >Sci-fi movies/TV are usually </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.2 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_5'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10924935630817977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_5').style.opacity = 0;\"\n",
" >underfunded, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.412 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_6'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.23537334125569417)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_6').style.opacity = 0;\"\n",
" >under-</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.347</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_7'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_7').style.opacity = 0;\"\n",
" >appreciated </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.383 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_8'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.21960784313725487)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_8').style.opacity = 0;\"\n",
" >and misunderstood. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.041 / 5</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_9'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_9').style.opacity = 0;\"\n",
" >I tried to like this</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_10'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_10').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.163 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.08560110913052081)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_11').style.opacity = 0;\"\n",
" >I really did, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.76</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.43244206773618543)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_12').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.448 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_13'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8344622697563875)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_13').style.opacity = 0;\"\n",
" >it is to good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.913 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_14'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.5270350564468211)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_14').style.opacity = 0;\"\n",
" >TV sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.713 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.4087938205585263)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_15').style.opacity = 0;\"\n",
" >-fi </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.206 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_16'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.6925727866904339)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_16').style.opacity = 0;\"\n",
" >as Babylon 5 is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.661 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3772628243216479)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_17').style.opacity = 0;\"\n",
" >to Star Trek </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.421 / 5</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_18').style.opacity = 0;\"\n",
" >(the original). </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216 / 6</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_19'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.11713210536739943)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_19').style.opacity = 0;\"\n",
" >Silly prosthetics, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.609 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_20'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.34573182808476927)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_20').style.opacity = 0;\"\n",
" >cheap cardboard sets, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.467 / 4</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_21'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2669043374925727)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_21').style.opacity = 0;\"\n",
" >stilted dialogues, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.279 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_22'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_22').style.opacity = 0;\"\n",
" >CG that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.512 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.29055258467023176)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_23').style.opacity = 0;\"\n",
" >doesn't </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.494 / 3</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_24').style.opacity = 0;\"\n",
" >match the background</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.257</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.14078035254505836)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_25').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.544</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_26').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.518 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2984353337294513)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_27').style.opacity = 0;\"\n",
" >painfully one</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.491 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_28').style.opacity = 0;\"\n",
" >-dimensional </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.661 / 5</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_29'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3772628243216478)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_29').style.opacity = 0;\"\n",
" >characters cannot be overcome with </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.188 / 8</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_30'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_30').style.opacity = 0;\"\n",
" >a 'sci-fi' setting. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_31'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_31').style.opacity = 0;\"\n",
" >(</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.229 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_32').style.opacity = 0;\"\n",
" >I'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.246 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_33').style.opacity = 0;\"\n",
" >m sure </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_34'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06195286195286191)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_34').style.opacity = 0;\"\n",
" >there are </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.076 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_35').style.opacity = 0;\"\n",
" >those of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.064 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_36'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_36').style.opacity = 0;\"\n",
" >you out </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.285</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_37'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_37').style.opacity = 0;\"\n",
" >there </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.343</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_38'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_38').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.09</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_39').style.opacity = 0;\"\n",
" >think </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_40').style.opacity = 0;\"\n",
" >Babylon </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.034</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_41').style.opacity = 0;\"\n",
" >5 </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.078</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_42'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.03830461477520289)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_42').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.422</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_43'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8186967716379481)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_43').style.opacity = 0;\"\n",
" >good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.454</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_44'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_44').style.opacity = 0;\"\n",
" >sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.428 / 2</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_45'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_45').style.opacity = 0;\"\n",
" >-fi</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_vptbrvbpxdfmthxwzmgx_ind_46'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 1; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 0; document.getElementById('_fs_vptbrvbpxdfmthxwzmgx_ind_46').style.opacity = 0;\"\n",
" ></div></div></div>\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"44.1748837296003%\" y1=\"33\" x2=\"44.1748837296003%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.1748837296003%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"63.00369865956464%\" y1=\"33\" x2=\"63.00369865956464%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"15.23999211867253%\" width=\"47.76370654089211%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"57.191191780258606%\" x2=\"63.00369865956464%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"60.09744521991162%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.277</text><svg x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">interesting by</text> </svg></svg><line x1=\"51.515982771713645%\" x2=\"57.191191780258606%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"54.35358727598613%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.247</text><svg x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Worth</text> </svg></svg><line x1=\"47.127081982142414%\" x2=\"51.515982771713645%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_20\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"49.32153237692803%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_20\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.964</text><svg x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertaining</text> </svg></svg><line x1=\"44.32615832884331%\" x2=\"47.127081982142414%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"45.72662015549287%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.615</text><svg x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertainment</text> </svg></svg><line x1=\"41.957809455321446%\" x2=\"44.32615832884331%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_34\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"43.14198389208238%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_34\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.52</text><svg x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the inclusion</text> </svg></svg><line x1=\"39.60392200423679%\" x2=\"41.957809455321446%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_22\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.78086572977912%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_22\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.517</text><svg x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">competently handled</text> </svg></svg><line x1=\"37.5284681797402%\" x2=\"39.60392200423679%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"38.5661950919885%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.456</text><svg x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the</text> </svg></svg><line x1=\"35.458224273569165%\" x2=\"37.5284681797402%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_19\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"36.49334622665468%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_19\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.455</text><svg x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"33.703802897517214%\" x2=\"35.458224273569165%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_21\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"34.58101358554319%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_21\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"32.14503216464746%\" x2=\"33.703802897517214%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"32.92441753108234%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.342</text><svg x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">The plot is made</text> </svg></svg><line x1=\"30.63962519219983%\" x2=\"32.14503216464746%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.392328678423645%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.331</text><svg x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">this</text> </svg></svg><line x1=\"29.144420016731708%\" x2=\"30.63962519219983%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"29.89202260446577%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.328</text><svg x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Damme kick style,</text> </svg></svg><line x1=\"27.66199377627084%\" x2=\"29.144420016731708%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.403206896501274%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.326</text><svg x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">fights with the great Van</text> </svg></svg><line x1=\"26.23224520605501%\" x2=\"27.66199377627084%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"26.947119491162923%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">This one features the usual car chases,</text> </svg></svg><line x1=\"24.802919167141717%\" x2=\"26.23224520605501%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_6\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.51758218659836%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_6\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">especially if</text> </svg></svg><line x1=\"23.37520865846653%\" x2=\"24.802919167141717%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"24.08906391280412%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"22.051534647269733%\" x2=\"23.37520865846653%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_8\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.713371652868133%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_8\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.291</text><svg x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">action movies</text> </svg></svg><line x1=\"20.785952795919922%\" x2=\"22.051534647269733%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_9\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"21.41874372159483%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_9\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.278</text><svg x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"19.529242180918054%\" x2=\"20.785952795919922%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_7\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.157597488418986%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_7\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.276</text><svg x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you like</text> </svg></svg><line x1=\"18.682249724015968%\" x2=\"19.529242180918054%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"19.10574595246701%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.186</text><svg x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">All of</text> </svg></svg><line x1=\"17.912554579925835%\" x2=\"18.682249724015968%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_4\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.2974021519709%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_4\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">value of a rental</text> </svg></svg><line x1=\"17.248121850833883%\" x2=\"17.912554579925835%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_29\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"17.58033821537986%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_29\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.146</text><svg x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you've seen</text> </svg></svg><line x1=\"16.726573881853092%\" x2=\"17.248121850833883%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_30\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.987347866343487%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_30\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.115</text><svg x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">your share before.</text> </svg></svg><line x1=\"16.28797589592817%\" x2=\"16.726573881853092%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_38\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.50727488889063%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_38\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.096</text><svg x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"15.869303915380081%\" x2=\"16.28797589592817%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.078639905654125%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.092</text><svg x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"15.590573418475456%\" x2=\"15.869303915380081%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_31\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.729938666927769%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_31\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.061</text><svg x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">&lt;br /&gt;&lt;br /&gt;</text> </svg></svg><line x1=\"15.334047932804634%\" x2=\"15.590573418475456%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.462310675640044%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.056</text><svg x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Many of the c</text> </svg></svg><line x1=\"15.23999211867253%\" x2=\"15.334047932804634%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_37\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.287020025738581%\" y=\"71\" font-size=\"12px\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_37\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.021</text><svg x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">which is clever</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"15.23999211867253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"63.00369865956464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_33').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_20').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_34').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_22').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_19').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_21').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_32').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_18').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_12').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_11').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_10').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_8').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_9').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_7').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_17').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_29').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_30').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_38').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_15').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_31').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_41').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_37').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"63.00369865956464%\" width=\"28.934891610927778%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"63.00369865956464%\" x2=\"70.9188608592117%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"66.96127975938818%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.739</text><svg x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"70.9188608592117%\" x2=\"76.89863451973449%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"73.9087476894731%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.313</text><svg x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">nothing</text> </svg></svg><line x1=\"76.89863451973449%\" x2=\"81.71316058830291%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"79.3058975540187%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.057</text><svg x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hardly profound</text> </svg></svg><line x1=\"81.71316058830291%\" x2=\"84.24461369482957%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"82.97888714156625%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.556</text><svg x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"84.24461369482957%\" x2=\"86.73271052033031%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.48866210757994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.546</text><svg x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">that</text> </svg></svg><line x1=\"86.73271052033031%\" x2=\"88.22086792275279%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.47678922154155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.327</text><svg x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">really blows</text> </svg></svg><line x1=\"88.22086792275279%\" x2=\"89.66789995808877%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.94438394042078%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.318</text><svg x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there is</text> </svg></svg><line x1=\"89.66789995808877%\" x2=\"90.7058509592311%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.18687545865993%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.228</text><svg x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you away if</text> </svg></svg><line x1=\"90.7058509592311%\" x2=\"91.1827998921727%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.94432542570189%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.105</text><svg x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">of a rabbit</text> </svg></svg><line x1=\"91.1827998921727%\" x2=\"91.53896517024644%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_14\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.36088253120957%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.078</text><svg x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">40 shell load shotgun,</text> </svg></svg><line x1=\"91.53896517024644%\" x2=\"91.87064021805075%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_16\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.7048026941486%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">even terrorist style bombs.</text> </svg></svg><line x1=\"91.87064021805075%\" x2=\"91.91828548477314%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_13\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.89446285141194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">shooting battles with the</text> </svg></svg><line x1=\"91.91828548477314%\" x2=\"91.93277610243844%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.92553079360579%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"91.93277610243844%\" x2=\"91.93859027049241%\" y1=\"60\" y2=\"60\" id=\"_fb_ozpwxhvkvapczubepdjt_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.93568318646543%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_ozpwxhvkvapczubepdjt_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93859027049241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_23').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_25').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_39').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_40').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_26').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_27').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_24').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_28').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_35').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_14').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_16').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_13').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_36').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\" onmouseover=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 1;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ozpwxhvkvapczubepdjt_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 0;document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_0').style.opacity = 0;\"\n",
" ></div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.247</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7162210338680925)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_1').style.opacity = 0;\"\n",
" >Worth </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.456</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_2').style.opacity = 0;\"\n",
" >the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.615</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3536145771439889)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_3').style.opacity = 0;\"\n",
" >entertainment </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_4'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_4').style.opacity = 0;\"\n",
" >value of a rental</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_5'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_5').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_6'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_6').style.opacity = 0;\"\n",
" >especially if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.276 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_7'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_7').style.opacity = 0;\"\n",
" >you like </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.291 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_8'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.16442859972271742)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_8').style.opacity = 0;\"\n",
" >action movies</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.278</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_9'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_9').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 8</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_10'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_10').style.opacity = 0;\"\n",
" >This one features the usual car chases, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.326 / 5</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_11').style.opacity = 0;\"\n",
" >fights with the great Van </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.328 / 5</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_12').style.opacity = 0;\"\n",
" >Damme kick style, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01 / 4</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_13'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_13').style.opacity = 0;\"\n",
" >shooting battles with the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.078 / 5</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_14'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_14').style.opacity = 0;\"\n",
" >40 shell load shotgun, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.092</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_15').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073 / 5</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_16'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_16').style.opacity = 0;\"\n",
" >even terrorist style bombs. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.186 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10136660724896006)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_17').style.opacity = 0;\"\n",
" >All of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.331</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_18').style.opacity = 0;\"\n",
" >this </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.455</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_19'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.964</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_20'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.55068330362448)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_20').style.opacity = 0;\"\n",
" >entertaining </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_21'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_21').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.517 / 3</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_22'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_22').style.opacity = 0;\"\n",
" >competently handled </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.739</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(1.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_23').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.318 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.18019409784115656)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_24').style.opacity = 0;\"\n",
" >there is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.313</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.7556347791641909)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_25').style.opacity = 0;\"\n",
" >nothing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.546</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_26').style.opacity = 0;\"\n",
" >that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.327 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1880768469003762)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_27').style.opacity = 0;\"\n",
" >really blows </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.228 / 3</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.12501485442661905)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_28').style.opacity = 0;\"\n",
" >you away if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.146 / 4</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_29'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.07771836007130124)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_29').style.opacity = 0;\"\n",
" >you've seen </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.115 / 4</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_30'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_30').style.opacity = 0;\"\n",
" >your share before.</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.061 / 8</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_31'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_31').style.opacity = 0;\"\n",
" >&lt;br /&gt;&lt;br /&gt;</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.342 / 4</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_32').style.opacity = 0;\"\n",
" >The plot is made </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.277 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7319865319865321)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_33').style.opacity = 0;\"\n",
" >interesting by </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.52 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_34'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_34').style.opacity = 0;\"\n",
" >the inclusion </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.105 / 3</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_35').style.opacity = 0;\"\n",
" >of a rabbit</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_36'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_36').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.021 / 3</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_37'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_37').style.opacity = 0;\"\n",
" >which is clever </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.096</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_38'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_38').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.057 / 2</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.6058625470390175)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_39').style.opacity = 0;\"\n",
" >hardly profound</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.556</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_40').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.056 / 5</div\n",
" ><div id='_tp_ozpwxhvkvapczubepdjt_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 1; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 0; document.getElementById('_fs_ozpwxhvkvapczubepdjt_ind_41').style.opacity = 0;\"\n",
" >Many of the c</div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"explainer2 = shap.Explainer(pmodel)\n",
"shap_values2 = explainer2(short_data[:2])\n",
"shap.plots.text(shap_values2[:, :, 1])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Pass a tokenizer as the masker object"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"PartitionExplainer explainer: 3it [00:13, 13.83s/it] \n"
]
},
{
"data": {
"text/html": [
"\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"43.7320020077122%\" y1=\"33\" x2=\"43.7320020077122%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.7320020077122%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"56.26799794675968%\" y1=\"33\" x2=\"56.26799794675968%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"8.333333329539322%\" width=\"47.934664617220356%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"49.67614168127722%\" x2=\"56.26799794675968%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_13\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"52.972069814018454%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_13\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.448</text><svg x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">it is to good</text> </svg></svg><line x1=\"43.2033434377326%\" x2=\"49.67614168127722%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_43\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"46.43974255950491%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_43\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.422</text><svg x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">good</text> </svg></svg><line x1=\"37.711110961113164%\" x2=\"43.2033434377326%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_16\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.45722719942288%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_16\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.206</text><svg x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">as Babylon 5 is</text> </svg></svg><line x1=\"33.553756805256896%\" x2=\"37.711110961113164%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_14\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"35.63243388318503%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_14\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.913</text><svg x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">TV sci</text> </svg></svg><line x1=\"30.094792055946918%\" x2=\"33.553756805256896%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.824274430601907%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.76</text><svg x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"26.847581091775016%\" x2=\"30.094792055946918%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.47118657386097%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.713</text><svg x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"23.837346949045894%\" x2=\"26.847581091775016%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.342464020410453%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.661</text><svg x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to Star Trek</text> </svg></svg><line x1=\"21.25714576047099%\" x2=\"23.837346949045894%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.547246354758443%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.567</text><svg x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I love sci</text> </svg></svg><line x1=\"19.188784601053072%\" x2=\"21.25714576047099%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_44\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.22296518076203%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_44\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.454</text><svg x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">sci</text> </svg></svg><line x1=\"17.240071412219883%\" x2=\"19.188784601053072%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_45\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.214428006636478%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_45\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.428</text><svg x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"15.321687242547771%\" x2=\"17.240071412219883%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.28087932738383%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.421</text><svg x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(the original).</text> </svg></svg><line x1=\"13.566650415345944%\" x2=\"15.321687242547771%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"14.444168828946857%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi and</text> </svg></svg><line x1=\"12.445940531349018%\" x2=\"13.566650415345944%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.006295473347482%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.246</text><svg x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">m sure</text> </svg></svg><line x1=\"11.402021260502215%\" x2=\"12.445940531349018%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.923980895925617%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.229</text><svg x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I'</text> </svg></svg><line x1=\"10.406181392863692%\" x2=\"11.402021260502215%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.904101326682953%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.219</text><svg x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">up with a lot.</text> </svg></svg><line x1=\"9.634718414609758%\" x2=\"10.406181392863692%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.020449903736726%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">am willing to put</text> </svg></svg><line x1=\"8.892794067207978%\" x2=\"9.634718414609758%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.263756240908869%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.163</text><svg x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I really did,</text> </svg></svg><line x1=\"8.536298355624186%\" x2=\"8.892794067207978%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_42\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.714546211416081%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_42\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.078</text><svg x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"8.380046118840536%\" x2=\"8.536298355624186%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.458172237232361%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.034</text><svg x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">5</text> </svg></svg><line x1=\"8.341575058286308%\" x2=\"8.380046118840536%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.360810588563421%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"8.333333329539322%\" x2=\"8.341575058286308%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_46\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.337454193912816%\" y=\"71\" font-size=\"12px\" id=\"_fs_dljtobsiapnfalpiobzl_ind_46\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333329539322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"56.26799794675968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_13').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_13').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_13').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_43').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_43').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_43').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_43').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_43').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_43').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_16').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_16').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_16').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_14').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_14').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_14').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_12').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_12').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_12').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_15').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_15').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_15').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_17').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_17').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_17').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_0').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_0').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_44').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_44').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_44').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_44').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_44').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_44').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_45').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_45').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_45').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_45').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_45').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_45').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_18').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_18').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_18').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_1').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_1').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_33').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_33').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_33').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_32').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_32').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_32').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_3').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_3').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_2').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_2').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_11').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_11').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_42').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_42').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_42').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_42').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_42').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_42').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_41').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_41').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_41').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_10').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_10').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_46').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_46').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_46').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_46').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_46').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_46').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"56.26799794675968%\" width=\"35.39866867817288%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"56.26799794675968%\" x2=\"59.275429656453724%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_29\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"57.7717138016067%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_29\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.661</text><svg x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">characters cannot be overcome with</text> </svg></svg><line x1=\"59.275429656453724%\" x2=\"62.046557156749806%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_20\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"60.66099340660176%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.609</text><svg x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cheap cardboard sets,</text> </svg></svg><line x1=\"62.046557156749806%\" x2=\"64.52107758828315%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"63.28381737251648%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.544</text><svg x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"64.52107758828315%\" x2=\"66.87807542999094%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"65.69957650913705%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.518</text><svg x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">painfully one</text> </svg></svg><line x1=\"66.87807542999094%\" x2=\"69.20796926786328%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"68.04302234892711%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.512</text><svg x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">doesn't</text> </svg></svg><line x1=\"69.20796926786328%\" x2=\"71.45588648576015%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"70.3319278768117%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.494</text><svg x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">match the background</text> </svg></svg><line x1=\"71.45588648576015%\" x2=\"73.69247749637248%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"72.57418199106631%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.491</text><svg x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-dimensional</text> </svg></svg><line x1=\"73.69247749637248%\" x2=\"75.81943965261523%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_21\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"74.75595857449386%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.467</text><svg x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">stilted dialogues,</text> </svg></svg><line x1=\"75.81943965261523%\" x2=\"77.69626510386736%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_6\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"76.7578523782413%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.412</text><svg x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">under-</text> </svg></svg><line x1=\"77.69626510386736%\" x2=\"79.44178473733054%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_8\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"78.56902492059895%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.383</text><svg x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and misunderstood.</text> </svg></svg><line x1=\"79.44178473733054%\" x2=\"81.0229599597059%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_7\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"80.23237234851823%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.347</text><svg x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">appreciated</text> </svg></svg><line x1=\"81.0229599597059%\" x2=\"82.58351663759066%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_38\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.80323829864828%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_38\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.343</text><svg x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"82.58351663759066%\" x2=\"83.87896621635889%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_37\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.23124142697478%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_37\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.285</text><svg x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there</text> </svg></svg><line x1=\"83.87896621635889%\" x2=\"85.14929829372397%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_22\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.51413225504143%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.279</text><svg x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">CG that</text> </svg></svg><line x1=\"85.14929829372397%\" x2=\"86.31918152946486%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.73423991159441%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.257</text><svg x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"86.31918152946486%\" x2=\"87.30223989482252%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_19\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"86.81071071214369%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.216</text><svg x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Silly prosthetics,</text> </svg></svg><line x1=\"87.30223989482252%\" x2=\"88.21245708395374%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.75734848938814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.2</text><svg x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">underfunded,</text> </svg></svg><line x1=\"88.21245708395374%\" x2=\"89.06665257796793%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_30\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.63955483096083%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_30\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.188</text><svg x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a 'sci-fi' setting.</text> </svg></svg><line x1=\"89.06665257796793%\" x2=\"89.68348571061456%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_4\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.37506914429125%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.135</text><svg x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Sci-fi movies/TV are usually</text> </svg></svg><line x1=\"89.68348571061456%\" x2=\"90.23609339323937%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_34\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.95978955192697%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_34\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there are</text> </svg></svg><line x1=\"90.23609339323937%\" x2=\"90.64601208963519%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.44105274143729%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.09</text><svg x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">think</text> </svg></svg><line x1=\"90.64601208963519%\" x2=\"90.99374442406791%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.81987825685155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.076</text><svg x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">those of</text> </svg></svg><line x1=\"90.99374442406791%\" x2=\"91.28583328089098%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.13978885247946%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.064</text><svg x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you out</text> </svg></svg><line x1=\"91.28583328089098%\" x2=\"91.47111924456763%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_9\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.37847626272931%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.041</text><svg x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I tried to like this</text> </svg></svg><line x1=\"91.47111924456763%\" x2=\"91.62000338012096%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.54556131234429%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Babylon</text> </svg></svg><line x1=\"91.62000338012096%\" x2=\"91.66666662493253%\" y1=\"60\" y2=\"60\" id=\"_fb_dljtobsiapnfalpiobzl_ind_31\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.64333500252675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_dljtobsiapnfalpiobzl_ind_31\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666662493256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_29').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_29').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_29').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_20').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_20').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_20').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_26').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_26').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_26').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_27').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_27').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_27').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_23').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_23').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_23').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_24').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_24').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_24').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_28').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_28').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_28').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_21').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_21').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_21').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_6').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_6').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_8').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_8').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_7').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_7').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_38').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_38').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_38').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_37').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_37').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_37').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_22').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_22').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_22').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_25').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_25').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_25').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_19').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_19').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_19').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_5').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_5').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_30').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_30').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_30').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_4').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_4').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_34').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_34').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_34').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_39').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_39').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_39').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_35').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_35').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_35').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_36').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_36').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_36').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_9').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_9').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_40').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_40').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_40').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\" onmouseover=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_31').style.opacity = 1;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dljtobsiapnfalpiobzl_ind_31').style.textDecoration = 'none';document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_31').style.opacity = 0;document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.567 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.32208358090711037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_0').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_0').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_0').style.opacity = 0;\"\n",
" >I love sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_1').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_1').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_1').style.opacity = 0;\"\n",
" >-fi and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_2').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_2').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_2').style.opacity = 0;\"\n",
" >am willing to put </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.219 / 5</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_3').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_3').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_3').style.opacity = 0;\"\n",
" >up with a lot. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.135 / 8</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_4'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06983561101208147)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_4').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_4').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_4').style.opacity = 0;\"\n",
" >Sci-fi movies/TV are usually </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.2 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_5'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10924935630817977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_5').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_5').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_5').style.opacity = 0;\"\n",
" >underfunded, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.412 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_6'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.23537334125569417)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_6').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_6').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_6').style.opacity = 0;\"\n",
" >under-</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.347</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_7'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_7').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_7').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_7').style.opacity = 0;\"\n",
" >appreciated </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.383 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_8'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.21960784313725487)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_8').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_8').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_8').style.opacity = 0;\"\n",
" >and misunderstood. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.041 / 5</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_9'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_9').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_9').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_9').style.opacity = 0;\"\n",
" >I tried to like this</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_10'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_10').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_10').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_10').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.163 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.08560110913052081)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_11').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_11').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_11').style.opacity = 0;\"\n",
" >I really did, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.76</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.43244206773618543)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_12').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_12').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_12').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.448 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_13'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8344622697563875)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_13').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_13').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_13').style.opacity = 0;\"\n",
" >it is to good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.913 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_14'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.5270350564468211)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_14').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_14').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_14').style.opacity = 0;\"\n",
" >TV sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.713 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.4087938205585263)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_15').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_15').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_15').style.opacity = 0;\"\n",
" >-fi </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.206 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_16'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.6925727866904339)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_16').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_16').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_16').style.opacity = 0;\"\n",
" >as Babylon 5 is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.661 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3772628243216479)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_17').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_17').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_17').style.opacity = 0;\"\n",
" >to Star Trek </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.421 / 5</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_18').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_18').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_18').style.opacity = 0;\"\n",
" >(the original). </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216 / 6</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_19'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.11713210536739943)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_19').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_19').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_19').style.opacity = 0;\"\n",
" >Silly prosthetics, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.609 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_20'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.34573182808476927)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_20').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_20').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_20').style.opacity = 0;\"\n",
" >cheap cardboard sets, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.467 / 4</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_21'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2669043374925727)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_21').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_21').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_21').style.opacity = 0;\"\n",
" >stilted dialogues, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.279 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_22'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_22').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_22').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_22').style.opacity = 0;\"\n",
" >CG that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.512 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.29055258467023176)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_23').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_23').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_23').style.opacity = 0;\"\n",
" >doesn't </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.494 / 3</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_24').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_24').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_24').style.opacity = 0;\"\n",
" >match the background</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.257</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.14078035254505836)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_25').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_25').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_25').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.544</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_26').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_26').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_26').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.518 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2984353337294513)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_27').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_27').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_27').style.opacity = 0;\"\n",
" >painfully one</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.491 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_28').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_28').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_28').style.opacity = 0;\"\n",
" >-dimensional </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.661 / 5</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_29'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3772628243216478)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_29').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_29').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_29').style.opacity = 0;\"\n",
" >characters cannot be overcome with </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.188 / 8</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_30'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_30').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_30').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_30').style.opacity = 0;\"\n",
" >a 'sci-fi' setting. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_31'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_31').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_31').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_31').style.opacity = 0;\"\n",
" >(</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.229 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_32').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_32').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_32').style.opacity = 0;\"\n",
" >I'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.246 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_33').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_33').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_33').style.opacity = 0;\"\n",
" >m sure </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_34'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06195286195286191)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_34').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_34').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_34').style.opacity = 0;\"\n",
" >there are </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.076 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_35').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_35').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_35').style.opacity = 0;\"\n",
" >those of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.064 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_36'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_36').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_36').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_36').style.opacity = 0;\"\n",
" >you out </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.285</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_37'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_37').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_37').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_37').style.opacity = 0;\"\n",
" >there </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.343</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_38'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_38').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_38').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_38').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.09</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_39').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_39').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_39').style.opacity = 0;\"\n",
" >think </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_40').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_40').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_40').style.opacity = 0;\"\n",
" >Babylon </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.034</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_41').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_41').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_41').style.opacity = 0;\"\n",
" >5 </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.078</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_42'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.03830461477520289)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_42').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_42').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_42').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_42').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.422</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_43'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8186967716379481)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_43').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_43').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_43').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_43').style.opacity = 0;\"\n",
" >good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.454</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_44'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_44').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_44').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_44').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_44').style.opacity = 0;\"\n",
" >sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.428 / 2</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_45'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_45').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_45').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_45').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_45').style.opacity = 0;\"\n",
" >-fi</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_dljtobsiapnfalpiobzl_ind_46'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_46').style.opacity = 1; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_46').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dljtobsiapnfalpiobzl_ind_46').style.opacity = 0; document.getElementById('_fs_dljtobsiapnfalpiobzl_ind_46').style.opacity = 0;\"\n",
" ></div></div></div>\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"44.1748837296003%\" y1=\"33\" x2=\"44.1748837296003%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.1748837296003%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"63.00369865956464%\" y1=\"33\" x2=\"63.00369865956464%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"15.23999211867253%\" width=\"47.76370654089211%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"57.191191780258606%\" x2=\"63.00369865956464%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"60.09744521991162%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.277</text><svg x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">interesting by</text> </svg></svg><line x1=\"51.515982771713645%\" x2=\"57.191191780258606%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"54.35358727598613%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.247</text><svg x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Worth</text> </svg></svg><line x1=\"47.127081982142414%\" x2=\"51.515982771713645%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_20\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"49.32153237692803%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_20\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.964</text><svg x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertaining</text> </svg></svg><line x1=\"44.32615832884331%\" x2=\"47.127081982142414%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"45.72662015549287%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.615</text><svg x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertainment</text> </svg></svg><line x1=\"41.957809455321446%\" x2=\"44.32615832884331%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_34\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"43.14198389208238%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_34\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.52</text><svg x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the inclusion</text> </svg></svg><line x1=\"39.60392200423679%\" x2=\"41.957809455321446%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_22\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.78086572977912%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_22\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.517</text><svg x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">competently handled</text> </svg></svg><line x1=\"37.5284681797402%\" x2=\"39.60392200423679%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"38.5661950919885%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.456</text><svg x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the</text> </svg></svg><line x1=\"35.458224273569165%\" x2=\"37.5284681797402%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_19\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"36.49334622665468%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_19\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.455</text><svg x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"33.703802897517214%\" x2=\"35.458224273569165%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_21\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"34.58101358554319%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_21\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"32.14503216464746%\" x2=\"33.703802897517214%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"32.92441753108234%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.342</text><svg x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">The plot is made</text> </svg></svg><line x1=\"30.63962519219983%\" x2=\"32.14503216464746%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.392328678423645%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.331</text><svg x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">this</text> </svg></svg><line x1=\"29.144420016731708%\" x2=\"30.63962519219983%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"29.89202260446577%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.328</text><svg x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Damme kick style,</text> </svg></svg><line x1=\"27.66199377627084%\" x2=\"29.144420016731708%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.403206896501274%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.326</text><svg x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">fights with the great Van</text> </svg></svg><line x1=\"26.23224520605501%\" x2=\"27.66199377627084%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"26.947119491162923%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">This one features the usual car chases,</text> </svg></svg><line x1=\"24.802919167141717%\" x2=\"26.23224520605501%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_6\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.51758218659836%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_6\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">especially if</text> </svg></svg><line x1=\"23.37520865846653%\" x2=\"24.802919167141717%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"24.08906391280412%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"22.051534647269733%\" x2=\"23.37520865846653%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_8\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.713371652868133%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_8\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.291</text><svg x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">action movies</text> </svg></svg><line x1=\"20.785952795919922%\" x2=\"22.051534647269733%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_9\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"21.41874372159483%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_9\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.278</text><svg x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"19.529242180918054%\" x2=\"20.785952795919922%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_7\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.157597488418986%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_7\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.276</text><svg x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you like</text> </svg></svg><line x1=\"18.682249724015968%\" x2=\"19.529242180918054%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"19.10574595246701%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.186</text><svg x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">All of</text> </svg></svg><line x1=\"17.912554579925835%\" x2=\"18.682249724015968%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_4\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.2974021519709%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_4\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">value of a rental</text> </svg></svg><line x1=\"17.248121850833883%\" x2=\"17.912554579925835%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_29\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"17.58033821537986%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_29\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.146</text><svg x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you've seen</text> </svg></svg><line x1=\"16.726573881853092%\" x2=\"17.248121850833883%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_30\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.987347866343487%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_30\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.115</text><svg x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">your share before.</text> </svg></svg><line x1=\"16.28797589592817%\" x2=\"16.726573881853092%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_38\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.50727488889063%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_38\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.096</text><svg x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"15.869303915380081%\" x2=\"16.28797589592817%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.078639905654125%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.092</text><svg x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"15.590573418475456%\" x2=\"15.869303915380081%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_31\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.729938666927769%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_31\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.061</text><svg x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">&lt;br /&gt;&lt;br /&gt;</text> </svg></svg><line x1=\"15.334047932804634%\" x2=\"15.590573418475456%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.462310675640044%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.056</text><svg x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Many of the c</text> </svg></svg><line x1=\"15.23999211867253%\" x2=\"15.334047932804634%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_37\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.287020025738581%\" y=\"71\" font-size=\"12px\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_37\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.021</text><svg x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">which is clever</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"15.23999211867253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"63.00369865956464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_33').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_20').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_34').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_22').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_19').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_21').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_32').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_18').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_12').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_11').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_10').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_6').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_8').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_9').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_7').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_17').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_4').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_29').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_30').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_38').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_15').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_31').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_41').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_37').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"63.00369865956464%\" width=\"28.934891610927778%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"63.00369865956464%\" x2=\"70.9188608592117%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"66.96127975938818%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.739</text><svg x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"70.9188608592117%\" x2=\"76.89863451973449%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"73.9087476894731%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.313</text><svg x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">nothing</text> </svg></svg><line x1=\"76.89863451973449%\" x2=\"81.71316058830291%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"79.3058975540187%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.057</text><svg x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hardly profound</text> </svg></svg><line x1=\"81.71316058830291%\" x2=\"84.24461369482957%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"82.97888714156625%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.556</text><svg x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"84.24461369482957%\" x2=\"86.73271052033031%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.48866210757994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.546</text><svg x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">that</text> </svg></svg><line x1=\"86.73271052033031%\" x2=\"88.22086792275279%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.47678922154155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.327</text><svg x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">really blows</text> </svg></svg><line x1=\"88.22086792275279%\" x2=\"89.66789995808877%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.94438394042078%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.318</text><svg x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there is</text> </svg></svg><line x1=\"89.66789995808877%\" x2=\"90.7058509592311%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.18687545865993%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.228</text><svg x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you away if</text> </svg></svg><line x1=\"90.7058509592311%\" x2=\"91.1827998921727%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.94432542570189%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.105</text><svg x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">of a rabbit</text> </svg></svg><line x1=\"91.1827998921727%\" x2=\"91.53896517024644%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_14\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.36088253120957%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.078</text><svg x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">40 shell load shotgun,</text> </svg></svg><line x1=\"91.53896517024644%\" x2=\"91.87064021805075%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_16\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.7048026941486%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">even terrorist style bombs.</text> </svg></svg><line x1=\"91.87064021805075%\" x2=\"91.91828548477314%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_13\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.89446285141194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">shooting battles with the</text> </svg></svg><line x1=\"91.91828548477314%\" x2=\"91.93277610243844%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.92553079360579%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"91.93277610243844%\" x2=\"91.93859027049241%\" y1=\"60\" y2=\"60\" id=\"_fb_qmnporrdkqtbvtjafsmq_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.93568318646543%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_qmnporrdkqtbvtjafsmq_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93859027049241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_23').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_25').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_39').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_40').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_26').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_27').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_24').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_28').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_35').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_14').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_16').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_13').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_36').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\" onmouseover=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 1;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qmnporrdkqtbvtjafsmq_ind_5').style.textDecoration = 'none';document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 0;document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_0').style.opacity = 0;\"\n",
" ></div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.247</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7162210338680925)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_1').style.opacity = 0;\"\n",
" >Worth </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.456</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_2').style.opacity = 0;\"\n",
" >the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.615</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3536145771439889)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_3').style.opacity = 0;\"\n",
" >entertainment </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_4'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_4').style.opacity = 0;\"\n",
" >value of a rental</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_5'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_5').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_6'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_6').style.opacity = 0;\"\n",
" >especially if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.276 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_7'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_7').style.opacity = 0;\"\n",
" >you like </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.291 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_8'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.16442859972271742)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_8').style.opacity = 0;\"\n",
" >action movies</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.278</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_9'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_9').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 8</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_10'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_10').style.opacity = 0;\"\n",
" >This one features the usual car chases, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.326 / 5</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_11').style.opacity = 0;\"\n",
" >fights with the great Van </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.328 / 5</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_12').style.opacity = 0;\"\n",
" >Damme kick style, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01 / 4</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_13'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_13').style.opacity = 0;\"\n",
" >shooting battles with the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.078 / 5</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_14'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_14').style.opacity = 0;\"\n",
" >40 shell load shotgun, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.092</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_15').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073 / 5</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_16'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_16').style.opacity = 0;\"\n",
" >even terrorist style bombs. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.186 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10136660724896006)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_17').style.opacity = 0;\"\n",
" >All of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.331</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_18').style.opacity = 0;\"\n",
" >this </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.455</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_19'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.964</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_20'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.55068330362448)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_20').style.opacity = 0;\"\n",
" >entertaining </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_21'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_21').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.517 / 3</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_22'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_22').style.opacity = 0;\"\n",
" >competently handled </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.739</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(1.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_23').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.318 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.18019409784115656)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_24').style.opacity = 0;\"\n",
" >there is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.313</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.7556347791641909)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_25').style.opacity = 0;\"\n",
" >nothing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.546</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_26').style.opacity = 0;\"\n",
" >that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.327 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1880768469003762)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_27').style.opacity = 0;\"\n",
" >really blows </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.228 / 3</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.12501485442661905)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_28').style.opacity = 0;\"\n",
" >you away if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.146 / 4</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_29'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.07771836007130124)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_29').style.opacity = 0;\"\n",
" >you've seen </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.115 / 4</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_30'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_30').style.opacity = 0;\"\n",
" >your share before.</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.061 / 8</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_31'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_31').style.opacity = 0;\"\n",
" >&lt;br /&gt;&lt;br /&gt;</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.342 / 4</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_32').style.opacity = 0;\"\n",
" >The plot is made </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.277 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7319865319865321)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_33').style.opacity = 0;\"\n",
" >interesting by </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.52 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_34'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_34').style.opacity = 0;\"\n",
" >the inclusion </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.105 / 3</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_35').style.opacity = 0;\"\n",
" >of a rabbit</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_36'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_36').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.021 / 3</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_37'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_37').style.opacity = 0;\"\n",
" >which is clever </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.096</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_38'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_38').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.057 / 2</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.6058625470390175)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_39').style.opacity = 0;\"\n",
" >hardly profound</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.556</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_40').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.056 / 5</div\n",
" ><div id='_tp_qmnporrdkqtbvtjafsmq_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 1; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 0; document.getElementById('_fs_qmnporrdkqtbvtjafsmq_ind_41').style.opacity = 0;\"\n",
" >Many of the c</div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"explainer2 = shap.Explainer(pmodel, classifier.tokenizer)\n",
"shap_values2 = explainer2(short_data[:2])\n",
"shap.plots.text(shap_values2[:, :, 1])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Build a Text masker explicitly"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"PartitionExplainer explainer: 3it [00:18, 18.80s/it] \n"
]
},
{
"data": {
"text/html": [
"\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"43.7320020077122%\" y1=\"33\" x2=\"43.7320020077122%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.7320020077122%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.252905</text><text x=\"43.7320020077122%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"56.26799794675968%\" y1=\"33\" x2=\"56.26799794675968%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2.50056</text><text x=\"56.26799794675968%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"8.333333329539322%\" width=\"47.934664617220356%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"49.67614168127722%\" x2=\"56.26799794675968%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_13\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"52.972069814018454%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_13\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.448</text><svg x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">it is to good</text> </svg></svg><line x1=\"43.2033434377326%\" x2=\"49.67614168127722%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_43\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"46.43974255950491%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_43\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.422</text><svg x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">good</text> </svg></svg><line x1=\"37.711110961113164%\" x2=\"43.2033434377326%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_16\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.45722719942288%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_16\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.206</text><svg x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">as Babylon 5 is</text> </svg></svg><line x1=\"33.553756805256896%\" x2=\"37.711110961113164%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_14\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"35.63243388318503%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_14\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.913</text><svg x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">TV sci</text> </svg></svg><line x1=\"30.094792055946918%\" x2=\"33.553756805256896%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.824274430601907%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.76</text><svg x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"26.847581091775016%\" x2=\"30.094792055946918%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.47118657386097%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.713</text><svg x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"23.837346949045894%\" x2=\"26.847581091775016%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.342464020410453%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.661</text><svg x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to Star Trek</text> </svg></svg><line x1=\"21.25714576047099%\" x2=\"23.837346949045894%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.547246354758443%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.567</text><svg x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I love sci</text> </svg></svg><line x1=\"19.188784601053072%\" x2=\"21.25714576047099%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_44\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.22296518076203%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_44\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.454</text><svg x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">sci</text> </svg></svg><line x1=\"17.240071412219883%\" x2=\"19.188784601053072%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_45\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.214428006636478%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_45\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.428</text><svg x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi</text> </svg></svg><line x1=\"15.321687242547771%\" x2=\"17.240071412219883%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.28087932738383%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.421</text><svg x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(the original).</text> </svg></svg><line x1=\"13.566650415345944%\" x2=\"15.321687242547771%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"14.444168828946857%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-fi and</text> </svg></svg><line x1=\"12.445940531349018%\" x2=\"13.566650415345944%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"13.006295473347482%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.246</text><svg x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">m sure</text> </svg></svg><line x1=\"11.402021260502215%\" x2=\"12.445940531349018%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"11.923980895925617%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.229</text><svg x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I'</text> </svg></svg><line x1=\"10.406181392863692%\" x2=\"11.402021260502215%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.904101326682953%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.219</text><svg x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">up with a lot.</text> </svg></svg><line x1=\"9.634718414609758%\" x2=\"10.406181392863692%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"10.020449903736726%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">am willing to put</text> </svg></svg><line x1=\"8.892794067207978%\" x2=\"9.634718414609758%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"9.263756240908869%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.163</text><svg x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I really did,</text> </svg></svg><line x1=\"8.536298355624186%\" x2=\"8.892794067207978%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_42\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.714546211416081%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_42\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.078</text><svg x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"8.380046118840536%\" x2=\"8.536298355624186%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.458172237232361%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.034</text><svg x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">5</text> </svg></svg><line x1=\"8.341575058286308%\" x2=\"8.380046118840536%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.360810588563421%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"8.333333329539322%\" x2=\"8.341575058286308%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_46\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"8.337454193912816%\" y=\"71\" font-size=\"12px\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_46\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.341575058286308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333329539322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"56.26799794675968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"49.67614168127722%\" y=\"40\" height=\"20\" width=\"6.5918562654824555%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_13').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"49.67614168127722%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.2033434377326%\" y=\"40\" height=\"20\" width=\"6.472798243544624%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_43').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_43').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.2033434377326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.711110961113164%\" y=\"40\" height=\"20\" width=\"5.492232476619435%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_16').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.711110961113164%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.553756805256896%\" y=\"40\" height=\"20\" width=\"4.157354155856268%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_14').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.553756805256896%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.094792055946918%\" y=\"40\" height=\"20\" width=\"3.4589647493099775%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_12').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.094792055946918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.847581091775016%\" y=\"40\" height=\"20\" width=\"3.2472109641719022%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_15').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.847581091775016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.837346949045894%\" y=\"40\" height=\"20\" width=\"3.0102341427291215%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_17').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.837346949045894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.25714576047099%\" y=\"40\" height=\"20\" width=\"2.580201188574904%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_0').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.25714576047099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.188784601053072%\" y=\"40\" height=\"20\" width=\"2.0683611594179183%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_44').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_44').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.188784601053072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.240071412219883%\" y=\"40\" height=\"20\" width=\"1.9487131888331888%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_45').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_45').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.240071412219883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.321687242547771%\" y=\"40\" height=\"20\" width=\"1.9183841696721124%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_18').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.321687242547771%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.566650415345944%\" y=\"40\" height=\"20\" width=\"1.7550368272018275%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_1').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.566650415345944%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.445940531349018%\" y=\"40\" height=\"20\" width=\"1.1207098839969252%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_33').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.445940531349018%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.402021260502215%\" y=\"40\" height=\"20\" width=\"1.0439192708468035%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_32').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.402021260502215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.406181392863692%\" y=\"40\" height=\"20\" width=\"0.995839867638523%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_3').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.406181392863692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.634718414609758%\" y=\"40\" height=\"20\" width=\"0.7714629782539344%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_2').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.634718414609758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.892794067207978%\" y=\"40\" height=\"20\" width=\"0.7419243474017794%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_11').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.892794067207978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.536298355624186%\" y=\"40\" height=\"20\" width=\"0.3564957115837917%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_42').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_42').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.536298355624186%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.380046118840536%\" y=\"40\" height=\"20\" width=\"0.15625223678365074%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_41').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.380046118840536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.341575058286308%\" y=\"40\" height=\"20\" width=\"0.038471060554227776%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_10').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333329539322%\" y=\"40\" height=\"20\" width=\"0.008241728746986254%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_46').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_46').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"56.26799794675968%\" width=\"35.39866867817288%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"56.26799794675968%\" x2=\"59.275429656453724%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_29\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"57.7717138016067%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_29\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.661</text><svg x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">characters cannot be overcome with</text> </svg></svg><line x1=\"59.275429656453724%\" x2=\"62.046557156749806%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_20\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"60.66099340660176%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.609</text><svg x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cheap cardboard sets,</text> </svg></svg><line x1=\"62.046557156749806%\" x2=\"64.52107758828315%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"63.28381737251648%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.544</text><svg x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"64.52107758828315%\" x2=\"66.87807542999094%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"65.69957650913705%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.518</text><svg x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">painfully one</text> </svg></svg><line x1=\"66.87807542999094%\" x2=\"69.20796926786328%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"68.04302234892711%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.512</text><svg x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">doesn't</text> </svg></svg><line x1=\"69.20796926786328%\" x2=\"71.45588648576015%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"70.3319278768117%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.494</text><svg x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">match the background</text> </svg></svg><line x1=\"71.45588648576015%\" x2=\"73.69247749637248%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"72.57418199106631%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.491</text><svg x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">-dimensional</text> </svg></svg><line x1=\"73.69247749637248%\" x2=\"75.81943965261523%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_21\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"74.75595857449386%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.467</text><svg x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">stilted dialogues,</text> </svg></svg><line x1=\"75.81943965261523%\" x2=\"77.69626510386736%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_6\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"76.7578523782413%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.412</text><svg x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">under-</text> </svg></svg><line x1=\"77.69626510386736%\" x2=\"79.44178473733054%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_8\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"78.56902492059895%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.383</text><svg x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and misunderstood.</text> </svg></svg><line x1=\"79.44178473733054%\" x2=\"81.0229599597059%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_7\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"80.23237234851823%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.347</text><svg x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">appreciated</text> </svg></svg><line x1=\"81.0229599597059%\" x2=\"82.58351663759066%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_38\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"81.80323829864828%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_38\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.343</text><svg x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"82.58351663759066%\" x2=\"83.87896621635889%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_37\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"83.23124142697478%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_37\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.285</text><svg x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there</text> </svg></svg><line x1=\"83.87896621635889%\" x2=\"85.14929829372397%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_22\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"84.51413225504143%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.279</text><svg x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">CG that</text> </svg></svg><line x1=\"85.14929829372397%\" x2=\"86.31918152946486%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.73423991159441%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.257</text><svg x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"86.31918152946486%\" x2=\"87.30223989482252%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_19\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"86.81071071214369%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.216</text><svg x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Silly prosthetics,</text> </svg></svg><line x1=\"87.30223989482252%\" x2=\"88.21245708395374%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.75734848938814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.2</text><svg x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">underfunded,</text> </svg></svg><line x1=\"88.21245708395374%\" x2=\"89.06665257796793%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_30\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.63955483096083%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_30\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.188</text><svg x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a 'sci-fi' setting.</text> </svg></svg><line x1=\"89.06665257796793%\" x2=\"89.68348571061456%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_4\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.37506914429125%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.135</text><svg x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Sci-fi movies/TV are usually</text> </svg></svg><line x1=\"89.68348571061456%\" x2=\"90.23609339323937%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_34\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"89.95978955192697%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_34\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there are</text> </svg></svg><line x1=\"90.23609339323937%\" x2=\"90.64601208963519%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.44105274143729%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.09</text><svg x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">think</text> </svg></svg><line x1=\"90.64601208963519%\" x2=\"90.99374442406791%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.81987825685155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.076</text><svg x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">those of</text> </svg></svg><line x1=\"90.99374442406791%\" x2=\"91.28583328089098%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.13978885247946%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.064</text><svg x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you out</text> </svg></svg><line x1=\"91.28583328089098%\" x2=\"91.47111924456763%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_9\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.37847626272931%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.041</text><svg x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">I tried to like this</text> </svg></svg><line x1=\"91.47111924456763%\" x2=\"91.62000338012096%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.54556131234429%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Babylon</text> </svg></svg><line x1=\"91.62000338012096%\" x2=\"91.66666662493253%\" y1=\"60\" y2=\"60\" id=\"_fb_wylxaslyqlwtysgnqizv_ind_31\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.64333500252675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_wylxaslyqlwtysgnqizv_ind_31\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">(</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"56.26799794675968%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666662493256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"59.275429656453724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.26799794675968%\" y=\"40\" height=\"20\" width=\"3.007431709694046%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_29').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"62.046557156749806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"59.275429656453724%\" y=\"40\" height=\"20\" width=\"2.771127500296082%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_20').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"64.52107758828315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"62.046557156749806%\" y=\"40\" height=\"20\" width=\"2.4745204315333424%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_26').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.87807542999094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"64.52107758828315%\" y=\"40\" height=\"20\" width=\"2.356997841707795%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_27').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.20796926786328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.87807542999094%\" y=\"40\" height=\"20\" width=\"2.3298938378723335%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_23').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.45588648576015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.20796926786328%\" y=\"40\" height=\"20\" width=\"2.2479172178968696%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_24').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.69247749637248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.45588648576015%\" y=\"40\" height=\"20\" width=\"2.2365910106123295%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_28').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.81943965261523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.69247749637248%\" y=\"40\" height=\"20\" width=\"2.1269621562427545%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_21').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.69626510386736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.81943965261523%\" y=\"40\" height=\"20\" width=\"1.876825451252131%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_6').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.44178473733054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.69626510386736%\" y=\"40\" height=\"20\" width=\"1.745519633463175%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_8').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.0229599597059%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.44178473733054%\" y=\"40\" height=\"20\" width=\"1.5811752223753643%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_7').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.58351663759066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.0229599597059%\" y=\"40\" height=\"20\" width=\"1.5605566778847617%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_38').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.87896621635889%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.58351663759066%\" y=\"40\" height=\"20\" width=\"1.2954495787682276%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_37').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.14929829372397%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.87896621635889%\" y=\"40\" height=\"20\" width=\"1.270332077365083%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_22').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.31918152946486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.14929829372397%\" y=\"40\" height=\"20\" width=\"1.1698832357408833%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_25').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.30223989482252%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.31918152946486%\" y=\"40\" height=\"20\" width=\"0.9830583653576639%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_19').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.21245708395374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.30223989482252%\" y=\"40\" height=\"20\" width=\"0.9102171891312167%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_5').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.06665257796793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.21245708395374%\" y=\"40\" height=\"20\" width=\"0.854195494014192%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_30').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.68348571061456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.06665257796793%\" y=\"40\" height=\"20\" width=\"0.616833132646633%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_4').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.23609339323937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.68348571061456%\" y=\"40\" height=\"20\" width=\"0.5526076826248101%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_34').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.64601208963519%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.23609339323937%\" y=\"40\" height=\"20\" width=\"0.40991869639582035%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_39').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.99374442406791%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.64601208963519%\" y=\"40\" height=\"20\" width=\"0.34773233443272034%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_35').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.28583328089098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.99374442406791%\" y=\"40\" height=\"20\" width=\"0.29208885682307084%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_36').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.47111924456763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.28583328089098%\" y=\"40\" height=\"20\" width=\"0.18528596367664818%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_9').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62000338012096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.47111924456763%\" y=\"40\" height=\"20\" width=\"0.14888413555333102%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_40').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.62000338012096%\" y=\"40\" height=\"20\" width=\"0.046663244811568916%\" onmouseover=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 1;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wylxaslyqlwtysgnqizv_ind_31').style.textDecoration = 'none';document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 0;document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.567 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.32208358090711037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_0').style.opacity = 0;\"\n",
" >I love sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_1').style.opacity = 0;\"\n",
" >-fi and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_2').style.opacity = 0;\"\n",
" >am willing to put </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.219 / 5</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_3').style.opacity = 0;\"\n",
" >up with a lot. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.135 / 8</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_4'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06983561101208147)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_4').style.opacity = 0;\"\n",
" >Sci-fi movies/TV are usually </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.2 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_5'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10924935630817977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_5').style.opacity = 0;\"\n",
" >underfunded, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.412 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_6'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.23537334125569417)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_6').style.opacity = 0;\"\n",
" >under-</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.347</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_7'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_7').style.opacity = 0;\"\n",
" >appreciated </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.383 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_8'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.21960784313725487)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_8').style.opacity = 0;\"\n",
" >and misunderstood. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.041 / 5</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_9'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_9').style.opacity = 0;\"\n",
" >I tried to like this</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_10'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_10').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.163 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.08560110913052081)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_11').style.opacity = 0;\"\n",
" >I really did, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.76</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.43244206773618543)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_12').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.448 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_13'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8344622697563875)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_13').style.opacity = 0;\"\n",
" >it is to good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.913 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_14'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.5270350564468211)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_14').style.opacity = 0;\"\n",
" >TV sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.713 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.4087938205585263)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_15').style.opacity = 0;\"\n",
" >-fi </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.206 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_16'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.6925727866904339)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_16').style.opacity = 0;\"\n",
" >as Babylon 5 is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.661 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3772628243216479)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_17').style.opacity = 0;\"\n",
" >to Star Trek </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.421 / 5</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_18').style.opacity = 0;\"\n",
" >(the original). </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216 / 6</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_19'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.11713210536739943)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_19').style.opacity = 0;\"\n",
" >Silly prosthetics, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.609 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_20'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.34573182808476927)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_20').style.opacity = 0;\"\n",
" >cheap cardboard sets, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.467 / 4</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_21'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2669043374925727)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_21').style.opacity = 0;\"\n",
" >stilted dialogues, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.279 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_22'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_22').style.opacity = 0;\"\n",
" >CG that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.512 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.29055258467023176)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_23').style.opacity = 0;\"\n",
" >doesn't </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.494 / 3</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_24').style.opacity = 0;\"\n",
" >match the background</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.257</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.14078035254505836)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_25').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.544</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_26').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.518 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.2984353337294513)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_27').style.opacity = 0;\"\n",
" >painfully one</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.491 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.282669835611012)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_28').style.opacity = 0;\"\n",
" >-dimensional </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.661 / 5</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_29'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3772628243216478)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_29').style.opacity = 0;\"\n",
" >characters cannot be overcome with </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.188 / 8</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_30'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.10136660724896014)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_30').style.opacity = 0;\"\n",
" >a 'sci-fi' setting. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_31'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_31').style.opacity = 0;\"\n",
" >(</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.229 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.12501485442661908)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_32').style.opacity = 0;\"\n",
" >I'</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.246 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.14078035254505847)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_33').style.opacity = 0;\"\n",
" >m sure </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_34'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.06195286195286191)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_34').style.opacity = 0;\"\n",
" >there are </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.076 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_35').style.opacity = 0;\"\n",
" >those of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.064 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_36'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03042186571598325)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_36').style.opacity = 0;\"\n",
" >you out </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.285</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_37'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1565458506634977)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_37').style.opacity = 0;\"\n",
" >there </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.343</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_38'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_38').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.09</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.04618736383442258)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_39').style.opacity = 0;\"\n",
" >think </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.014656367597544028)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_40').style.opacity = 0;\"\n",
" >Babylon </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.034</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.014656367597544035)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_41').style.opacity = 0;\"\n",
" >5 </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.078</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_42'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.03830461477520289)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_42').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.422</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_43'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.8186967716379481)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_43').style.opacity = 0;\"\n",
" >good </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.454</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_44'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_44').style.opacity = 0;\"\n",
" >sci</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.428 / 2</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_45'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.24325609031491383)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_45').style.opacity = 0;\"\n",
" >-fi</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_wylxaslyqlwtysgnqizv_ind_46'\n",
" style='display: inline; background: rgba(np.float64(230.2941176470614), np.float64(26.505882352939775), np.float64(102.59215686274348), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 1; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 0; document.getElementById('_fs_wylxaslyqlwtysgnqizv_ind_46').style.opacity = 0;\"\n",
" ></div></div></div>\n",
" <br>\n",
" <hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
" <div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
" </div>\n",
" <svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.43624592434723%\" y1=\"33\" x2=\"49.43624592434723%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.43624592434723%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"35.77780684645563%\" y1=\"33\" x2=\"35.77780684645563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.77780684645563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"22.11936776856402%\" y1=\"33\" x2=\"22.11936776856402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11936776856402%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"8.460928690672416%\" y1=\"33\" x2=\"8.460928690672416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.460928690672416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"63.09468500223884%\" y1=\"33\" x2=\"63.09468500223884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.09468500223884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"76.75312408013045%\" y1=\"33\" x2=\"76.75312408013045%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.75312408013045%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">7</text><line x1=\"90.41156315802206%\" y1=\"33\" x2=\"90.41156315802206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.41156315802206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">10</text><line x1=\"44.1748837296003%\" y1=\"33\" x2=\"44.1748837296003%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.1748837296003%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.155629</text><text x=\"44.1748837296003%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"63.00369865956464%\" y1=\"33\" x2=\"63.00369865956464%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3.98002</text><text x=\"63.00369865956464%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">POSITIVE</tspan>(inputs)</text><rect x=\"15.23999211867253%\" width=\"47.76370654089211%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"57.191191780258606%\" x2=\"63.00369865956464%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_33\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"60.09744521991162%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_33\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.277</text><svg x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">interesting by</text> </svg></svg><line x1=\"51.515982771713645%\" x2=\"57.191191780258606%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_1\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"54.35358727598613%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_1\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.247</text><svg x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Worth</text> </svg></svg><line x1=\"47.127081982142414%\" x2=\"51.515982771713645%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_20\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"49.32153237692803%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_20\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.964</text><svg x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertaining</text> </svg></svg><line x1=\"44.32615832884331%\" x2=\"47.127081982142414%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_3\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"45.72662015549287%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_3\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.615</text><svg x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">entertainment</text> </svg></svg><line x1=\"41.957809455321446%\" x2=\"44.32615832884331%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_34\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"43.14198389208238%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_34\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.52</text><svg x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the inclusion</text> </svg></svg><line x1=\"39.60392200423679%\" x2=\"41.957809455321446%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_22\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"40.78086572977912%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_22\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.517</text><svg x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">competently handled</text> </svg></svg><line x1=\"37.5284681797402%\" x2=\"39.60392200423679%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_2\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"38.5661950919885%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_2\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.456</text><svg x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">the</text> </svg></svg><line x1=\"35.458224273569165%\" x2=\"37.5284681797402%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_19\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"36.49334622665468%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_19\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.455</text><svg x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"33.703802897517214%\" x2=\"35.458224273569165%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_21\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"34.58101358554319%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_21\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.385</text><svg x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"32.14503216464746%\" x2=\"33.703802897517214%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_32\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"32.92441753108234%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_32\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.342</text><svg x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">The plot is made</text> </svg></svg><line x1=\"30.63962519219983%\" x2=\"32.14503216464746%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_18\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"31.392328678423645%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_18\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.331</text><svg x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">this</text> </svg></svg><line x1=\"29.144420016731708%\" x2=\"30.63962519219983%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_12\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"29.89202260446577%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_12\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.328</text><svg x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Damme kick style,</text> </svg></svg><line x1=\"27.66199377627084%\" x2=\"29.144420016731708%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_11\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"28.403206896501274%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_11\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.326</text><svg x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">fights with the great Van</text> </svg></svg><line x1=\"26.23224520605501%\" x2=\"27.66199377627084%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_10\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"26.947119491162923%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_10\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">This one features the usual car chases,</text> </svg></svg><line x1=\"24.802919167141717%\" x2=\"26.23224520605501%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_6\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"25.51758218659836%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_6\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">especially if</text> </svg></svg><line x1=\"23.37520865846653%\" x2=\"24.802919167141717%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_0\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"24.08906391280412%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_0\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.314</text><svg x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"22.051534647269733%\" x2=\"23.37520865846653%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_8\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"22.713371652868133%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_8\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.291</text><svg x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">action movies</text> </svg></svg><line x1=\"20.785952795919922%\" x2=\"22.051534647269733%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_9\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"21.41874372159483%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_9\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.278</text><svg x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"19.529242180918054%\" x2=\"20.785952795919922%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_7\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"20.157597488418986%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_7\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.276</text><svg x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you like</text> </svg></svg><line x1=\"18.682249724015968%\" x2=\"19.529242180918054%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_17\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"19.10574595246701%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_17\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.186</text><svg x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">All of</text> </svg></svg><line x1=\"17.912554579925835%\" x2=\"18.682249724015968%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_4\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"18.2974021519709%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_4\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">value of a rental</text> </svg></svg><line x1=\"17.248121850833883%\" x2=\"17.912554579925835%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_29\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"17.58033821537986%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_29\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.146</text><svg x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you've seen</text> </svg></svg><line x1=\"16.726573881853092%\" x2=\"17.248121850833883%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_30\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.987347866343487%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_30\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.115</text><svg x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">your share before.</text> </svg></svg><line x1=\"16.28797589592817%\" x2=\"16.726573881853092%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_38\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.50727488889063%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_38\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.096</text><svg x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"15.869303915380081%\" x2=\"16.28797589592817%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_15\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"16.078639905654125%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_15\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.092</text><svg x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"15.590573418475456%\" x2=\"15.869303915380081%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_31\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.729938666927769%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_31\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.061</text><svg x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">&lt;br /&gt;&lt;br /&gt;</text> </svg></svg><line x1=\"15.334047932804634%\" x2=\"15.590573418475456%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_41\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.462310675640044%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_41\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.056</text><svg x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">Many of the c</text> </svg></svg><line x1=\"15.23999211867253%\" x2=\"15.334047932804634%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_37\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2; opacity: 0\"/><text x=\"15.287020025738581%\" y=\"71\" font-size=\"12px\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_37\" fill=\"rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.021</text><svg x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">which is clever</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.334047932804634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792));stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(255.0), np.float64(0.0), np.float64(81.08083606031792))\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"15.23999211867253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"63.00369865956464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"57.191191780258606%\" y=\"40\" height=\"20\" width=\"5.812506879306035%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_33').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_33').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"57.191191780258606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"51.515982771713645%\" y=\"40\" height=\"20\" width=\"5.675209008544961%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"51.515982771713645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.127081982142414%\" y=\"40\" height=\"20\" width=\"4.388900789571231%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_20').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"47.127081982142414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"44.32615832884331%\" y=\"40\" height=\"20\" width=\"2.800923653299101%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"44.32615832884331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"41.957809455321446%\" y=\"40\" height=\"20\" width=\"2.3683488735218674%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_34').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_34').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"41.957809455321446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"39.60392200423679%\" y=\"40\" height=\"20\" width=\"2.3538874510846526%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_22').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"39.60392200423679%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.5284681797402%\" y=\"40\" height=\"20\" width=\"2.0754538244965914%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.5284681797402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.458224273569165%\" y=\"40\" height=\"20\" width=\"2.0702439061710365%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_19').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.458224273569165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.703802897517214%\" y=\"40\" height=\"20\" width=\"1.7544213760519511%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_21').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.703802897517214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.14503216464746%\" y=\"40\" height=\"20\" width=\"1.5587707328697533%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_32').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_32').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.14503216464746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.63962519219983%\" y=\"40\" height=\"20\" width=\"1.5054069724476307%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_18').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.63962519219983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.144420016731708%\" y=\"40\" height=\"20\" width=\"1.4952051754681221%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_12').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.144420016731708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.66199377627084%\" y=\"40\" height=\"20\" width=\"1.4824262404608675%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_11').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.66199377627084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.23224520605501%\" y=\"40\" height=\"20\" width=\"1.429748570215832%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_10').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.23224520605501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.802919167141717%\" y=\"40\" height=\"20\" width=\"1.4293260389132918%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.802919167141717%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.37520865846653%\" y=\"40\" height=\"20\" width=\"1.4277105086751867%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.37520865846653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.051534647269733%\" y=\"40\" height=\"20\" width=\"1.3236740111967968%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_8').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.051534647269733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.785952795919922%\" y=\"40\" height=\"20\" width=\"1.2655818513498112%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_9').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.785952795919922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.529242180918054%\" y=\"40\" height=\"20\" width=\"1.256710615001868%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_7').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.529242180918054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.682249724015968%\" y=\"40\" height=\"20\" width=\"0.8469924569020861%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_17').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.682249724015968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.912554579925835%\" y=\"40\" height=\"20\" width=\"0.7696951440901323%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.912554579925835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.248121850833883%\" y=\"40\" height=\"20\" width=\"0.6644327290919527%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_29').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_29').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.248121850833883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.726573881853092%\" y=\"40\" height=\"20\" width=\"0.5215479689807907%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_30').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_30').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.726573881853092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.28797589592817%\" y=\"40\" height=\"20\" width=\"0.43859798592492183%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_38').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_38').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.28797589592817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.869303915380081%\" y=\"40\" height=\"20\" width=\"0.41867198054808874%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_15').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.869303915380081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.590573418475456%\" y=\"40\" height=\"20\" width=\"0.27873049690462537%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_31').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_31').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.590573418475456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.334047932804634%\" y=\"40\" height=\"20\" width=\"0.25652548567082256%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_41').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_41').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.23999211867253%\" y=\"40\" height=\"20\" width=\"0.09405581413210307%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_37').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_37').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"63.00369865956464%\" width=\"28.934891610927778%\" y=\"40\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727)); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"63.00369865956464%\" x2=\"70.9188608592117%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_23\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"66.96127975938818%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_23\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.739</text><svg x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">but</text> </svg></svg><line x1=\"70.9188608592117%\" x2=\"76.89863451973449%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_25\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"73.9087476894731%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_25\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.313</text><svg x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">nothing</text> </svg></svg><line x1=\"76.89863451973449%\" x2=\"81.71316058830291%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_39\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"79.3058975540187%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_39\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.057</text><svg x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hardly profound</text> </svg></svg><line x1=\"81.71316058830291%\" x2=\"84.24461369482957%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_40\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"82.97888714156625%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_40\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.556</text><svg x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">.</text> </svg></svg><line x1=\"84.24461369482957%\" x2=\"86.73271052033031%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_26\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"85.48866210757994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_26\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.546</text><svg x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">that</text> </svg></svg><line x1=\"86.73271052033031%\" x2=\"88.22086792275279%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_27\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"87.47678922154155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_27\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.327</text><svg x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">really blows</text> </svg></svg><line x1=\"88.22086792275279%\" x2=\"89.66789995808877%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_24\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"88.94438394042078%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_24\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.318</text><svg x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">there is</text> </svg></svg><line x1=\"89.66789995808877%\" x2=\"90.7058509592311%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_28\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.18687545865993%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_28\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.228</text><svg x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">you away if</text> </svg></svg><line x1=\"90.7058509592311%\" x2=\"91.1827998921727%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_35\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"90.94432542570189%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_35\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.105</text><svg x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">of a rabbit</text> </svg></svg><line x1=\"91.1827998921727%\" x2=\"91.53896517024644%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_14\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.36088253120957%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.078</text><svg x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">40 shell load shotgun,</text> </svg></svg><line x1=\"91.53896517024644%\" x2=\"91.87064021805075%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_16\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.7048026941486%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">even terrorist style bombs.</text> </svg></svg><line x1=\"91.87064021805075%\" x2=\"91.91828548477314%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_13\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.89446285141194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">shooting battles with the</text> </svg></svg><line x1=\"91.91828548477314%\" x2=\"91.93277610243844%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_36\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.92553079360579%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_36\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><line x1=\"91.93277610243844%\" x2=\"91.93859027049241%\" y1=\"60\" y2=\"60\" id=\"_fb_oixvudrgpelmhkvpxutg_ind_5\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2; opacity: 0\"/><text x=\"91.93568318646543%\" y=\"71\" font-size=\"12px\" fill=\"rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\" id=\"_fs_oixvudrgpelmhkvpxutg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">,</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727));stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"63.00369865956464%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(np.float64(0.0), np.float64(138.56128015770724), np.float64(250.76166088685727))\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93859027049241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"70.9188608592117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.00369865956464%\" y=\"40\" height=\"20\" width=\"7.915162199647064%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_23').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_23').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.89863451973449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.9188608592117%\" y=\"40\" height=\"20\" width=\"5.979773660522781%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_25').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_25').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.71316058830291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.89863451973449%\" y=\"40\" height=\"20\" width=\"4.814526068568426%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_39').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_39').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.24461369482957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.71316058830291%\" y=\"40\" height=\"20\" width=\"2.531453106526655%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_40').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_40').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.73271052033031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.24461369482957%\" y=\"40\" height=\"20\" width=\"2.4880968255007474%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_26').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_26').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.22086792275279%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.73271052033031%\" y=\"40\" height=\"20\" width=\"1.4881574024224733%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_27').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_27').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.66789995808877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.22086792275279%\" y=\"40\" height=\"20\" width=\"1.4470320353359796%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_24').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_24').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.7058509592311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.66789995808877%\" y=\"40\" height=\"20\" width=\"1.037951001142332%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_28').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_28').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.1827998921727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.7058509592311%\" y=\"40\" height=\"20\" width=\"0.4769489329415961%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_35').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_35').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.53896517024644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.1827998921727%\" y=\"40\" height=\"20\" width=\"0.3561652780737461%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_14').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.87064021805075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.53896517024644%\" y=\"40\" height=\"20\" width=\"0.33167504780431045%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_16').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.91828548477314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.87064021805075%\" y=\"40\" height=\"20\" width=\"0.047645266722383894%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_13').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.93277610243844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.91828548477314%\" y=\"40\" height=\"20\" width=\"0.014490617665302352%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_36').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_36').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.93277610243844%\" y=\"40\" height=\"20\" width=\"0.00581416805397339%\" onmouseover=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 1;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_oixvudrgpelmhkvpxutg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 0;document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_0'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_0').style.opacity = 0;\"\n",
" ></div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.247</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_1'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7162210338680925)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_1').style.opacity = 0;\"\n",
" >Worth </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.456</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_2'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_2').style.opacity = 0;\"\n",
" >the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.615</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_3'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.3536145771439889)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_3').style.opacity = 0;\"\n",
" >entertainment </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169 / 4</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_4'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.09348385818974037)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_4').style.opacity = 0;\"\n",
" >value of a rental</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_5'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_5').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_6'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_6').style.opacity = 0;\"\n",
" >especially if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.276 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_7'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_7').style.opacity = 0;\"\n",
" >you like </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.291 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_8'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.16442859972271742)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_8').style.opacity = 0;\"\n",
" >action movies</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.278</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_9'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.15654585066349747)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_9').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.314 / 8</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_10'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_10').style.opacity = 0;\"\n",
" >This one features the usual car chases, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.326 / 5</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_11'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.18019409784115661)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_11').style.opacity = 0;\"\n",
" >fights with the great Van </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.328 / 5</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_12'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_12').style.opacity = 0;\"\n",
" >Damme kick style, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01 / 4</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_13'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_13').style.opacity = 0;\"\n",
" >shooting battles with the </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.078 / 5</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_14'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_14').style.opacity = 0;\"\n",
" >40 shell load shotgun, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.092</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_15'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.04618736383442265)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_15').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073 / 5</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_16'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.03830461477520309)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_16').style.opacity = 0;\"\n",
" >even terrorist style bombs. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.186 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_17'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.10136660724896006)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_17').style.opacity = 0;\"\n",
" >All of </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.331</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_18'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1880768469003763)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_18').style.opacity = 0;\"\n",
" >this </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.455</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_19'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.2590215884333532)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.964</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_20'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.55068330362448)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_20').style.opacity = 0;\"\n",
" >entertaining </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.385</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_21'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.219607843137255)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_21').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.517 / 3</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_22'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_22').style.opacity = 0;\"\n",
" >competently handled </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.739</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_23'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(1.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_23').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.318 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_24'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.18019409784115656)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_24').style.opacity = 0;\"\n",
" >there is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.313</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_25'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.7556347791641909)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_25').style.opacity = 0;\"\n",
" >nothing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.546</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_26'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_26').style.opacity = 0;\"\n",
" >that </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.327 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_27'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.1880768469003762)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_27').style.opacity = 0;\"\n",
" >really blows </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.228 / 3</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_28'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.12501485442661905)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_28').style.opacity = 0;\"\n",
" >you away if </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.146 / 4</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_29'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.07771836007130124)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_29').style.opacity = 0;\"\n",
" >you've seen </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.115 / 4</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_30'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.06195286195286207)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_30').style.opacity = 0;\"\n",
" >your share before.</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.061 / 8</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_31'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_31').style.opacity = 0;\"\n",
" >&lt;br /&gt;&lt;br /&gt;</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.342 / 4</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_32'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.1959595959595959)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_32').style.opacity = 0;\"\n",
" >The plot is made </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.277 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_33'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.7319865319865321)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_33').style.opacity = 0;\"\n",
" >interesting by </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.52 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_34'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.29843533372945136)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_34').style.opacity = 0;\"\n",
" >the inclusion </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.105 / 3</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_35'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.05407011289364222)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_35').style.opacity = 0;\"\n",
" >of a rabbit</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_36'\n",
" style='display: inline; background: rgba(np.float64(54.70588235294111), np.float64(122.49411764705886), np.float64(213.40784313725496), np.float64(0.0)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_36').style.opacity = 0;\"\n",
" >, </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.021 / 3</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_37'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.00677361853832443)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_37').style.opacity = 0;\"\n",
" >which is clever </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.096</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_38'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.05407011289364243)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_38').style.opacity = 0;\"\n",
" >but </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.057 / 2</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_39'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.6058625470390175)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_39').style.opacity = 0;\"\n",
" >hardly profound</div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.556</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_40'\n",
" style='display: inline; background: rgba(np.float64(30.0), np.float64(136.0), np.float64(229.0), np.float64(0.3142008318478906)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_40').style.opacity = 0;\"\n",
" >. </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.056 / 5</div\n",
" ><div id='_tp_oixvudrgpelmhkvpxutg_ind_41'\n",
" style='display: inline; background: rgba(np.float64(255.0), np.float64(13.0), np.float64(87.0), np.float64(0.030421865715983164)); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 1; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 0; document.getElementById('_fs_oixvudrgpelmhkvpxutg_ind_41').style.opacity = 0;\"\n",
" >Many of the c</div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"masker = shap.maskers.Text(classifier.tokenizer)\n",
"explainer2 = shap.Explainer(pmodel, masker)\n",
"shap_values2 = explainer2(short_data[:2])\n",
"shap.plots.text(shap_values2[:, :, 1])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Explore how the Text masker works"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(1, 7)"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"masker.shape(\"I like this movie.\")"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(array(['I like this movie.'], dtype='<U18'),)"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"model_args = masker(np.array([True, True, True, True, True, True, True]), \"I like this movie.\")\n",
"model_args"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-5.16124821, 5.16124821]])"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pmodel(*model_args)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(array(['I [MASK] [MASK]movie.'], dtype='<U21'),)"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"model_args = masker(np.array([True, True, False, False, True, True, True]), \"I like this movie.\")\n",
"model_args"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-0.60019428, 0.60019402]])"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pmodel(*model_args)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [],
"source": [
"masker2 = shap.maskers.Text(classifier.tokenizer, mask_token=\"...\", collapse_mask_token=True)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(array(['I ...movie.'], dtype='<U11'),)"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"model_args2 = masker2(np.array([True, True, False, False, True, True, True]), \"I like this movie.\")\n",
"model_args2"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-4.21697383, 4.21697376]])"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pmodel(*model_args2)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Plot summary statistics and bar charts"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"PartitionExplainer explainer: 21it [02:32, 8.02s/it] \n"
]
}
],
"source": [
"# explain the predictions of the pipeline on the first two samples\n",
"shap_values = explainer(short_data[:20])"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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eADhDgAAAAA8gHAHAAAAAB5AuAMAAAAADyDcAQAAAIAHEO4AAAAAwAMIdwAAAADgAYQ7AAAAAPAAwh0AAAAAeADhDgAAAAA8gHAHAAAAAB5AuAMAAAAADyDcAQAAAIAHEO4AAAAAwAMIdwAAAADgAYQ7AAAAAPCAnJG+AACR4/P53PPu3bsjfSkAAABIRMGCBZUtW7bEdiHcAVnZ9u3b3fOZZ54Z6UsBAABAImJiYlSoUKHEdiHcAVlZsWLF3PM///yjwoULR/pyshSrllqo3rBhQ5L/UCN18dlHDp995PDZRwafe+Ts9uBnb5W7pBDugCwse3b/sFsLdl75hy+zsc+dzz4y+Owjh88+cvjsI4PPPXIKZbHPnglVAAAAAMADCHcAAAAA4AGEOyALi4qKUv/+/d0z0heffeTw2UcOn33k8NlHBp975ERl0c8+my8wFzoAAAAAINOicgcAAAAAHkC4AwAAAAAPINwBAAAAgAcQ7oAs6M8//1SrVq2UP39+lS5dWg899JAOHz4c6cvKElavXq077rhD5557rnLmzKk6depE+pKyhHHjxunqq69W+fLl3c+9ff7vvfeeGHae9qZMmaJLLrlEJUqUcBMbVK5cWQ888IBiYmIifWlZzt69e91/A9myZdOCBQsifTmeNnr0aPc5x3088sgjkb60LOP999/Xeeedpzx58qh48eJq27atDhw4IK9jEXMgi9m5c6cuu+wyVatWTRMmTNC///7rftHav3+/hg0bFunL87w//vhDkydP1gUXXKDjx4+7B9Leyy+/rIoVK+qll15yIeO7775Tz549tWHDBjebGtLOjh073M/7PffcozPOOEPLli3T008/7Z6//fbbSF9eljJo0CAdPXo00peRpUybNk2FCxeOfV2uXLmIXk9W8eyzz+r555/XY489piZNmig6OlrTp0/XsWPH5HXMlglkMc8995z7R++ff/5RsWLF3LZ3331Xd911l9tWtmzZSF+ip1mYy57d32mie/fu7q/n9ksu0pb9H7v95TZYr169NHbsWPcHj8D3BOlj+PDh7vO3Py7xb0769dho0KCB+wOH9R6YP3++e420q9z16NFD27ZtC/u3B2lr5cqVrlfMl19+6ap1WQ3/bwZkMVOnTlXLli1jg53p1KmTCx38FT3tESIiI75frqy7zu7du7Vv376IXFNWZhU8Q3fw9HP33Xe7UFejRo1IXwqQpkaNGqVKlSplyWBn+C0DyIJ/va1Zs2bItiJFiqhMmTLuPSCr+OWXX1wXqYIFC0b6UrIE6w518OBBLVq0SAMHDtRVV13lusoi7Y0fP15Lly7VU089FelLyXJq166tHDlyuLGm1nMmK3QLjLQ5c+aobt26euaZZ1SyZEnlzp1bzZo109y5c5UVMOYOyGKsC5qFubiKFi3qxsYAWSXYffrpp66LGtJHhQoVXDdM06ZNG40ZMybSl5Ql2HhqG1c9ePBgFSpUKNKXk2XYH0wHDBjgxpvaRCrWRfCJJ55w/w0wvj1tbd68WQsXLnR/0HjzzTeVL18+9/N/+eWXa9WqVS7weRnhDgCQpWzcuFGdO3fWpZde6ib5QPrNmmldYG1SIfuLevv27d3ENlbVQNqxz7pUqVJu/BfST+vWrd0jwIJF3rx59corr+jxxx934Q9p4/jx425mWKtY16tXz21r3Lix6ylgwdp6DngZ3TKBLMYqdPFNQW4VveBxeIAX7dq1y43DsDFfn3/+OWMg05H9kmWz1t1+++2aNGmSfvjhB02cODHSl+Vp69evd9VpqyDZv/v282+/9Bp7DnyN9GHj261b5u+//x7pS/H87zlnnHFGbLAz9vuNjbO2Py55HZU7IIux8XZxx9bZ/+lv2rQpbCwe4CW2vtGVV17pft5nz54dMj050pf90pUrVy637iPSztq1a92kNe3atQt7zyrX1mXQxicBXhvnuGbNmnjfs3G/XsefLIEsxqoW33//vfsLbvACz1bBsG4jgBfZ2l72V/MVK1a4dadYayqybGKDI0eOuEkmkHbOPfdcVyENfli3QPP222+78UhIPzbO17ohWwUJaefKK6/U9u3bQyqk9tomczr//PPldaxzB2Qx1v3S/qpVvXp1t7hnYBHzm266iUHe6TS5gY09Mm+88Yb766ItsG0uueQSt8A2Up+tqWZrq1kXtaZNm4a8Z79oRUVFRezavO7aa69166lZtc7GHC1evFhDhgxxkxrYWms2kx3Sz48//uiqdqxzl7ZsvN1ll13mZm00NqGKrSl77733xgZspN2Yu8aNG7tJ4mxdX/t3x2YqtclUbF3Z0qVLy8sId0AWZNULW/No1qxZbhr4rl27un8A+SUr7a1bt86tvxMf+6t68+bN0/2asgIbSG/jjxLqusaU/Gnnf//7n1ss3v6QYb902Wdtga9v377M3hgBhLv0YSHO1pW1CZzs597+oGrjTe3/e232TKSt6Oho3X///frqq69c1+SLLrrIhepatWrJ6wh3AAAAAOABjLkDAAAAAA8g3AEAAACABxDuAAAAAMADCHcAAAAA4AGEOwAAAADwAMIdAAAAAHgA4Q4AAAAAPIBwBwAAAAAeQLgDAACnZevWrSpcuLCGDx8esr179+6qWLFixK7LC55++mlly5ZN69atS5f2Ro8eHdbegQMHVLZsWQ0YMCBdrgFAyhHuAADAaXniiSdUokQJ9ejRI1n7b968WX379lWdOnVUsGBBFSpUSNWqVVOXLl00YcKEkH2bN2+uAgUKJBl+FixYEO/7O3fuVN68ed0+H374YYLnsRBq+wQeuXPndttuv/12bdiwQVmZfX6PPPKIhgwZok2bNkX6cgAkgnAHAABSbOPGjXrvvfd09913K2fOnEnuv379ep1zzjl644031LhxY/3vf//Tc889pyuvvFJ//vmnRo0alarX9/HHH+vQoUOqVKmSu87ElC9f3gVAewwdOlQXXHCBO8aeo6OjlZXddtttLvS+/PLLkb4UAIlI+l9hAACABLzzzjvul/4bbrghWfu/+OKLrhvnF198oauvvjreql5qGjlypC699FLX1n333ae///5blStXjndf61p68803x76+8847VbJkSQ0bNsyFzn79+qXqtWUm+fPn17XXXuu6bT7zzDOKioqK9CUBiAeVOwAA0lFgTNP06dM1cOBAVahQwXV7s+rQnDlz3D4//fSTLrzwQvcLdZkyZTRo0KB4z2VdEa+55hoVL17c/bJdo0YNPfvsszp69GjIfvPmzXPj36pXr658+fK5rpDNmjXTxIkTw85p+9n1xcTExIabPHnyuP3nzp0btv+4cePUoEEDt19yrFq1yj23aNEi3vdLly6t1LJo0SL9/vvv6tatm2688UZXWUyqehdX69at3fPq1asT3Gfq1KnuM3vttdfifb9Jkyau2+qRI0dO+fsRn8D3KD623d6Pa+zYse5nytqyNu3nbfz48ToVbdu2dRXMH3744ZSOA5B+CHcAAESAjWGy6tW9996r/v37u4rS5Zdf7rZZheSiiy5yVa6aNWvqqaee0kcffRRy/OTJk10g+Ouvv/Tggw+6YGEhwvaNW0Wz0GBdHjt1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",
"text/plain": [
"<Figure size 800x650 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"shap.plots.bar(shap_values[:, :, \"POSITIVE\"])"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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CzDWtdGCigWXwYMHq3r16rr99tvdPk8//bQeeeQRF+LCQcoce+yxKd06LdRY186ePXuqYsWKmjFjhl599VXNmzdPU6ZMibrm3r17dd5556lp06buGjaWzixatMiFxf3797uwV6dOHS1btsyFthYtWmju3LkpQe2iiy5yQdO6pNp59uzZ446fOnWqu//UU0/VnXfe6dpu57TzmbJly2b5nCxZssSFyEsuucQ9L9b+cePG6brrrtPnn3+est/YsWPVvXt3lSpVStdff717/j777DO3HwAAwBEpab+0bXfabYlJ0sbt0dsrlA5V8fbsk+LSiUPF/6mw2f15waqFXZ6RShSTnrhWecYD8tDo0aM9+zUbNGhQ1M/lypXz1q9fn7Lftm3bvDJlynj16tWLOr5SpUpe48aN05x3x44dXnx8vNewYUMvMTEx6r5+/fq5a9i1wuwctu36669Pc64WLVq4ay9evDhq+9dff+3FxMR4N910k/vZ2mvn6NSpU6aPed68eW6/8HGp2X3t2rVLsy0QCHjjxo2L2t6sWTPXhs2bN6dsq1OnjlekSBHvt99+S9m2d+9er0GDBpleNyMLFiyIOv+qVau8lStXRr029pgiTZ06NdOfp0+f7u3fv59rcA2uwTW4BtfgGj6/xuTJk701P8/zvPp9PU+X5c3Nzr1mU+aPY/K8bJ9v6dc/hh5HqSs974aX0zxXu0ZPCe07/pdsP1drr3gkdExWr4c9nx0f84LFunjLh449qNfjYAXsP3kXI3Gks6pYly5dXDdNm1Al/LNV4KwiF+n000/XwoUL3WQlYVZJs4qdVegiDRs2TL169dJjjz2WppK1du1aNW/eXD169HCVQ2PdKa0St27dOtftMnLiFPvZKnWvv/56mvZbm6yiuHjxYle9s8qcVR2tqmZdLNNj17Hr3XTTTXrjjTfS3G/dK9u1a6fx48dHbWvQoIGrDka644479Nxzz+nHH390FcIVK1aodu3aOuecc/Tdd99F7fviiy/qlltuyfC6AAAAuW3BggUqv8fT0de8Li1ZkzcXqX+MNGmAdHSFjPfZslOa/Uf0tjtGSFXLS3deGr291Qmhql3dPlLdatK4B6LvH/at1GuINPd5qUmN7LWx75vSK1+lv45epBtelkZMlt67VbryLOUlum4iX9i4ttRsXNzOnTuzdXw4+N1///3ulh4L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PdaFQbsNHjxYp59+ujvGvm7cuFFHghtvvNEF3eeeey6/mwLgEB34Py8AAEAuef31111guPLKK6O2P/PMM65L56effqpLL700zXFW7ctNw4YN07nnnuuudeutt2r58uWqXbt2uvtaN9Nrrrkm5eebb75ZRx11lF5++WUXQO+88075XalSpXT55ZdrxIgRevTRRxUXF5ffTQKQQ1T0AAAoAOyNtQWjiRMn6pFHHlGNGjVcVzqrJs2YMcPt8/3336tVq1buzXi1atU0cODAdM9l3Rgvu+wyVapUyb1Rr1+/vh577DHt378/ar+ZM2eqZ8+eqlevnkqWLOm6UZ555pn65JNP0pzT9rP2bdu2LSUAFS9e3O3/008/pdl/9OjROu2009x+kZYtW+a+nn/++em2vWrVqsotv/zyi3777Tf16NFDV111lassZlXVS61du3bu6++//57hPl999ZV7bl588cV072/ZsqXrwpqUlHTQz3t6wq9Femy73Z/aqFGj3O+OXcuuab9XY8aMSfccF110katgTp48OVvtAVAwEfQAAChAbIyUVbtuueUW9e/f31Wg2rZt67ZZpeWss85yVbEGDRrooYce0rvvvht1/JdffulCw9KlS3XHHXe48GFBw/ZNXV2zYGHdJbt27eq6Kt5///3avHmzu87IkSMzDD7WLdPOd++992r+/Pnq0KGDduzYkbJPQkKClixZoubNm6c5/vjjj3dfbYIWz/Oy/bxY8Ejvtnv37kyreTa+74orrnCh17qHvv322woGg9m+bjiY2vEZsdfHAur//ve/dI+3oG5Bs2jRojl+3g91rKSNf7SQZx8OWHdZC3tdunRxXWhTs98X89133+V6WwAcRh4AAMh3w4cPt9TjnXzyyV5iYmLK9rFjx7rtRYoU8X7++eeU7bZP1apVvRYtWqRs27Nnj1elShXvrLPO8pKSkqLO/9xzz7nzTJ48OWXbzp0707Rj165dXr169bwTTjghanuPHj3c8TfffHPU9g8//NBtf+2111K2TZo0yW0bPHhwmvP/8ccfXtmyZd39xx13nHfVVVd5zz//vDdr1qx0n5dzzjnH7ZvVLfK5CT8X5cqVc+0O+/TTT92+48aNS3OdGjVqeA0aNPA2bNjgbsuXL/feeustLz4+3j338+bN8zLTr18/d+4FCxZEbX/ggQfc9tmzZ+foee/fv787fsWKFWlei/TY9sjHbNe1bffee2+afS+99FKvTJky3vbt29PcZ4/54osvzvQxAyjYqOgBAFCAWLdIm/ExzCp4xrraWVfIMNvHKmbhipP55ptvXDXNZrncunVrVOWrffv2bp+vv/46ZX/rAhpmlbFNmza5r+edd54WLVqk7du3p2nfbbfdFvWz7Wsi27Fhwwb3tUKFCmmOt/Fxc+bMUZ8+fdzPVsGyc9pja9q0qWbPnp3mGOsiao8tvdu1116b7vNos3fac2DdNsPsObAulBl137Qqm91vN2vnDTfc4Cp5Y8eOdTOEZiZ8nciqnuUuq7jasaeccsohPe+HMhmNdee09qWuhl5yySWuEjt9+vQ0x9lrZ2MpARReTMYCAEABknqikPLly7uvNmtkanafhYQwCwnGAkpGLAiG2Rt569ZnQSa9N/UWlGzpg8zaV7FiRfc1sh3h8WMZdc20ZQtsghO72TT+P/74o5vp8vPPP3fdKxcsWBAVEmNjY3XBBRekey47NqNumxbYbCbNyPF11s3Sxg9a0EndHdPaFV7zz4K0rSlXp04dZUc4zFmwGjRokGJiYjRlyhS3/t1TTz0VtW9Onvecst8Jex2sq292fifC7JiMxgECKBwIegAAFCAWag5me6RwsLJ10E466aR097HwEt7XQo8FARsPaBU1m3XSrmMzTFqlLb2xbBm1IzLUWcAyNu4sKzapjI0Vs9vVV1/trjtu3Lio2S8P1ooVK9xEItYmm/AkPVZps1k4I1mlLaNAmR3XXXedO+ekSZPceay6Z89X5GPJ6fMeKaMAlnqynfD1bH+bMCaj165Ro0bprj8Yfh0BFE4EPQAAfMIWHc9uYJk7d67rQmmTqgwYMCDqvqFDhx5SO8LBIbI7Z3bYunoWdNasWXNI17fAZAHHqnPlypVLc79V06z7Zuqgd6hswhVbgsECnk2IY7NatmnTxoXZ3Hzew9VOC9KRlU+buCe934nx48erevXqOuGEE7J1fqtCWmjMqrsqgIKNMXoAAPiEzYhpyxnYrIrpVdP27NmTMjtmuLqTunulzaKZ3Wn+M2KVIAt74WUhItlMjtaO1KyKZV03TcOGDXN8bTuPLVXRpEkT9erVS507d05zs9lH582bp59//lm5yR63LU1g4wOtC6eNtYscI5hbz3u4Svntt99GbX/22WfT7Bsew3jfffcpOTk5W902w6/bOeeck632ACiYqOgBAOATVsmzalKnTp3c2nk2Vs/GmNmYL5toxAKIhYnWrVu76o6FMRs/ZhOB2P62JIMtdG4hKb1JUQ6GdcW0qfxtDF5kRcuWhpg6dao6duzoxrRZt0VbJP2jjz5y17TFzW25hpyyyWZWrVqlG2+8McN9bLmFhx9+2I3ja9asmXKTBbvPPvvMLW1hj81ei0i58bxbULXg1rt3b/e6WlXPqnY27jA1e3z2WO1m3XntdbHuu/a62LWsm+y+ffuijrFtNn7RXgsAhRdBDwAAn1X1rFJlVT0bh2YzYNqkLbZ+3e233+5mtgxXlmzNvX79+rm15Xbt2uW66tn31rXwUIPeTTfdpEcffdR1xbTQE9lt0iZDsYlKJkyY4CqPFlAtAFlFymbjtIlMcsrCm7E16TJij9OqYh988IGef/55tzB9brHJZCx42eOyiqLNGBopN553m6jFwpi9njbxi60VaI/XXu/w5D2RbD1GGwtoayq+8MIL7ppW+bXrpl7k3e6zDwRs9te4uLhceEYA5JeArbGQb1cHAAC+9a9//ctV2Gzx9PBi4SjYwgu42/jKyEosgMKHMXoAACBPPPLII27ZBZscBQWfjZ20SrBNKEPIAwo/KnoAAAAA4DNU9AAAAADAZwh6AAAAAOAzBD0AAAAA8BmCHgAAAAD4DEEPAAAAAHyGoAcAAAAAPkPQAwAAAACfIegBAAAAgM8Q9AAAAADAZwh6AAAAACB/+X8h7zsd2NQp1AAAAABJRU5ErkJggg==",
"text/plain": [
"<Figure size 800x650 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"shap.plots.bar(shap_values[:, :, \"POSITIVE\"].mean(0))"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA3cAAAI4CAYAAADJShAbAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAACFTklEQVR4nO3dB3RU5dqG4WcmgRA6CAYUQTpIsQFiBxSxgI1mBxtHj9ixYO8cu9gLHPQXC0VsRwQVUVREBAHpIEV66DUQkpn9r/eLEyY9QCDJzn2tNSbZs3vCOM+8Xwl4nucJAAAAAFCsBQv7BAAAAAAA+49wBwAAAAA+QLgDAAAAAB8g3AEAAACADxDuAAAAAMAHCHcAAAAA4AOEOwAAAADwAcIdAAAAAPgA4Q4AAAAA8umPP/5QIBBwX4sawh0AAAAA+ADhDgAAAAB8gHAHAAAAAD5AuAMAAAAAHyDcAQAAAIAPEO4AAAAAwAcIdwAAAADgA4Q7AAAAAPABwh0AAAAA+ADhDgAAAAB8gHAHAAAAAD5AuAMAAAAAHyDcAQAAAIAPEO4AAAAAwAcIdwAAAADgA4Q7AAAAAPABwh0AAAAA+ADhDgAAAAB8gHAHAAAAAD5AuAMAAAAAHyDcAQAAAIAPEO4AAAAAIJ/i4uKUkJCgoijgeZ5X2CcBAAAAoOjassvTjtTCPouiIWV3ipYvnqeKpaWWLVuqKIkt7BMAAAAAULRZsLt2bFhLtlAXqlspRo+3OEQxKZtV1BDuAAAAAOTJgt38jYV9FkWBp6KKPncAAAAA4AOEOwAAAADwAcIdAAAAAPgA4Q4AAAAAfIBwBwAAAAA+QLgDAAAAAB9gKgQAAACgEG3e5enuCWF9utBTUorUpmZAz7cL6riEQJ7bTl7t6d1ZYf22xtOf66TUsOT1y/4tfuIOT/dOCOurxZ62pUhNq0r9Twiqe2PqPX7BbxK+MmDAAAUCAY0cOVJFgZ2HnY+dV27LcnP22We79QEAgP+EPU/njQrpw7me+h4b1DOnB7U2yVO7YSEt3JT3fGqjF4c1aKYne6dQr1LO621N9nTKRyF9stDTv44O6LnTg6pQWurxZVgfzg0X7EWh0BDuAAAAgEIycr6niaukd88O6uGTgrrp2KB+6BmjmID08C95h64bjwlqy80xmnJlrDrWyfnD4LdmePprs/TZhUE9fkqMO874njFqXUO684ewdoeK7sTcyD+aZQIH0EUXXaRt27YpLi6usE8FAAAUQSMXeEooK13caE8wq142oB6NAxo6x1Nyqqe42JxDW0K5/LXu+Wmlp+rxUofae2o7wYAdJ6i7fgzrx+WeOh5JS6HijsodsI82bNiQ53MxMTEqX768SpUqdRDPDAAAFBfT1nqub50FrWjW7y4pVVqwqWCOkxyS4rMp65T9Z9nUxII5DgoX4Q6+FA6HdccddyghIcEFq5o1a+rpp5/Ost7jjz+uevXqqXTp0ipbtqyOO+44ff7551nWsz5v1vdt2LBhOuqoo1SmTBm1a9fOPVe9enW1aNFC33//vY4//ni3n6ZNm+arf13//v3duUXO0X7OS48ePdw+//jjjyzPLVq0yAXKc845J1/3CQAAFK7VO6Sa5bIujyxbtb1gmks2riKt2C79vcXLUtEzKwvoOChcNMuELz344INKTk7WpZde6ppEDh06VPfee68LXeeff75b58orr3TLGzZsqFtvvdU1nxw+fLguvvhiDR48WL17986wzzlz5qhXr1668MILdckll2R4LjExUV26dFGHDh3c/m1feRk0aJA2bdrkwlqFChX02Wef6T//+Y82btyot956K8ft7FxHjBihgQMH6r333svwnC2zYPvvf/97L+8YAAAoiMFRdofyt25cTNqHxztT077PrMw/79Lt+YJwXcug3pwRUo8vQ3qxfYwSyknD53tuhM6CPA4KF5U7+NLu3bs1d+5cvfTSS65i98MPPyg2Ntb9bH7//Xd98MEHLuzNmDFDzz77rN58801NnjzZhcG77rpLKSkpGfa5fPlyDRkyRB9//LEeeugh94hYt26dC49ffvmlHn74YT333HN5nuPKlSv166+/uuPa8f/88081aNDAhb758+fnuN3JJ5+sxo0b64svvshyjhb6Dj/8cBc088tCq4XMiBUrVmjZsmXpP2/dulWzZs3KsM3EiRNz/XnSpEkKhfb8341jcAyOwTE4BscoCceYsNxT/EuhfD3Gz17ttrGmktt2pWQ5xh8z56Y/n9/rsA+2c7qOI+O26T8tV2rRFunkj0JqMCik5yft0kvt0+JA+VJ5HwM5Oxh/u/kR8DyPGix8w5o/3nfffXr00UczhC9Tu3Zt1/zyr7/+0m233eaqXG+//bauv/76DOv17NnTVfC++eYbdezY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gXAHAAAA+NS0tZ7rWxcMZAxo1u8uKVVasKlgj7c75Gl9kqflWz19ujCs56aEVaei1KBKwR4H2SPcAdZOfOdO3Xbbbapbt67i4uJUtmxZNWjQQPfdd1+26/bu3VtVq1ZVqVKldOSRR+rdd9/Ndr8vv/yyjjrqKJUpU8btt1GjRnrttdeyXa9t27aqVq2a22eFChV00kknacKECVnWrV69ulq0aKFx48bp6KOPdvsuX768OnXqpL///ruA7ggAAPCD1TukmuWyLo8sW7U97353e2PUQk/VXw+p9tshXfx5WLXKS19eFKPYIE0yDwb63KHEs7B2wgknaObMmTruuON00UUXucBkA6d89dVXeuqppzKsf8UVVyg2NlbXXXeddu/erffee89936pVKzVv3jx9vWuuuUZDhgzR8ccfr1tuuUUxMTFuf3379tXq1av1xBNPpK/71ltvqVKlSurRo4dq1qypv/76S5988onOOussTZw40Z1XtHXr1un8889Xu3bt3Nc//vhDX3/9tU455RTNnj1bFStWPAh3DgAAHOzBUXaH8rduXIzcQHA20Il9n1mZf1KAPV+Q2h8R0Lfdg64Z5rhlnmas87QjpWCPgZxRuUOJ179/fxfsevXqpalTp+qFF15wge6LL75woSmzypUru/WfeeYZvfTSS/r4448VCoX07LPPpq9jVTULdrbPKVOmuHUHDBigP//8UyeeeKKef/55bdiwIX39X375xYW4119/XQ8++KALjN99953b7+OPP57lHBITE3XTTTe5sGjP29c777xTK1as0AMPPLBX1z9nzhxt2rSnTYbtY9myZek/b926NcsIoXauuf08adIkd+4cg2NwDI7BMTgGxyi4Y0xY7in+pVC+Hj/OXeOOER8rJYeyHmPXP6HOns/vdWyMuoacrmPdktk6s07a4C1vdIxRi9jl6jgipDU7vHwdo7iadBD+rvIj4HlewdZigWLGmlWuX79ea9ascc0bc5sK4Z133tEHH3ygyy67LMNzVulr3bq1fvrpJ/fzpZdeqmHDhum3335zlbhoFtwsgA0dOlSXX355hufC4bA2btyoXbvSeh2ffPLJrkq4aNGiDM0yd+zY4cJhfHx8+vKkpCTXrLNWrVpasGDBft4VAABQ1FhAGrMkf2/dL2oYUKW4gBoOSlXDKgGN7pqxfDd4ZljXjQ3rz14x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hx56qNevXz83IXk0e52wCcqjhcNhNwl6rVq1XMg74YQTvIkTJx7ks/e8gP3n4NYKAQAAAAAFjT53AAAAAOADhDsAAAAA8AHCHQAAAAD4AOEOAAAAAHyAcAcAAAAAPkC4AwAAAAAfINwBAAAAgA8Q7gAAAADABwh3AADggFi7dq0qVaqkd955p7BPpdh65JFHFAgEtHTp0gN+rJ07d+qwww7To48+esCPBeDAINwBAIAD4oEHHlD16tV19dVXZ1i+Zs0a9evXT82bN1eFChVUsWJFNWzYUJdccolGjRqVYd127dqpfPnyeYafKVOmZPv8pk2bFB8f79Z5//33c9zPkUce6daJPEqXLu2WXXfddVq+fLlKArtP9957r5599lmtXr26sE8HwD4g3AEAgAK3YsUK/fe//9XNN9+s2NjY9OV///23jj76aL322mtq27at/vOf/2jAgAHq3Lmz5s2bpyFDhhToeXzwwQdKTk5W3bp13fnkplatWi4A2mPgwIE64YQT3Db2df369SoJrr32WhduX3jhhcI+FQD7YM+rLQAAQAF56623XEi49NJLMyx/7rnnXHPNzz77TBdccEGW7ayqV5AGDx6s9u3bu2PddtttWrx4serVq5ftutaE9Iorrkj/+cYbb9Shhx6qV1991YXOu+66q0DPrSgqV66cLr74Yr377rt64oknFBcXV9inBGAvULkDAKAIsDfTFobGjRunxx57THXq1HHN5KxqNGnSJLfOjz/+qFNOOcW9Aa9Zs6Yef/zxbPdlTRQvuugiVatWzb05b9y4sZ588kmlpqZmWG/y5Mnq3bu3GjVqpLJly7omkieffLI+/fTTLPu09ez8tmzZkh56ypQp49b/7bffsqw/YsQItWrVyq0XbeHChe7rGWecke2516hRQwXljz/+0PTp09WrVy9ddtllroKYV/Uus06dOrmvf/31V47rfP311+7evPzyy9k+f+KJJ7rmqSkpKXt937MT+V1kx5bb85kNGzbM/e3YseyY9nc1cuTIbPdxzjnnuErl+PHj83U+AIoOwh0AAEWI9Xmyqtatt96qhx9+2FWazjrrLLfMKiqnnnqqq341adJEDz30kIYOHZph+6+++soFhQULFujOO+90gcPCha2buYpmYcKaQvbo0cM1Q7z//vu1ceNGd5wPP/wwx7BjTS5tf/3799esWbN03nnnadu2benrJCYmav78+WrTpk2W7evXr+++2iArnufl+75Y2MjukZSUlGvVzvrrde3a1QVda/r53nvvKRwO5/u4kTBq2+fEfj8WSv/v//4v2+0tnFu4LFWq1D7f9/3t+2j9GS3Y2QcC1hTWAl737t1d89jM7O/F/PDDDwV+LgAOMA8AABS6IUOGWNLxjj32WC85OTl9+eeff+6Wx8bGer///nv6clunRo0aXtu2bdOX7dy500tISPBOPfVULyUlJcP+X3jhBbef8ePHpy/bvn17lvPYsWOH16hRI69p06YZlvfq1cttf+ONN2ZYPnz4cLf8zTffTF/2/fffu2UDBw7Msv9FixZ5FStWdM8fccQR3mWXXea9+OKL3pQpU7K9L6effrpbN69H9L2J3IvKlSu784747LPP3LqjR4/Ocpw6dep4TZo08datW+ceixcv9v773/96lSpVcvd+5syZXm769evn9j179uwMyx944AG3fOrUqft03x9++GG3/ZIlS7L8LrJjy6Ov2Y5ry/r3759l3QsuuMCrUKGCt3Xr1izP2TV37tw512sGUPRQuQMAoAixJo82UmOEVeqMNaOzZo4Rto5VxiKVJfPtt9+6qpmNTrl58+YMFa5zzz3XrfPNN9+kr2/NOyOsArZhwwb3tUOHDpo7d662bt2a5fxuv/32DD/buib6PNatW+e+Vq1aNcv21t9txowZuummm9zPVqmyfdq1tWzZUlOnTs2yjTX/tGvL7nHllVdmex9t1E27B9YkM8LugTWPzKlpplXT7Hl72Hlec801rmL3+eefu5E9cxM5TnT1zrKWVVZt2+OOO26/7vv+DChjTTXt/DJXPc8//3xXcf3111+zbGe/O+sbCaB4YUAVAACKkMyDfVSpUsV9tdEeM7PnLBhEWDAwFkpyYuEvwt68W5M9Cy/ZvZG3cGTTFOR2focccoj7Gn0ekf5gOTW7tCkGbJASe9iQ+z///LMbofLLL790TSdnz56dIRjGxMTozDPPzHZftm1OTTItpNkImNH95awJpfUHtHCTuamlnVdkTj4LzzbnW4MGDZQfkQBnYeqpp55SMBjUhAkT3Px0zzzzTIZ19+W+7yv7m7DfgzXjzc/fRIRtk1O/PgBFF+EOAIAixILM3iyPFglTNk/ZMccck+06Flgi61rQsTf/1r/PKmc2WqQdx0aGtIpadn3TcjqP6CBnocpYP7K82MAw1vfLHpdffrk77ujRozOMWrm3lixZ4gYDsXOyQUuyYxU1Gz0zmlXUcgqR+XHVVVe5fX7//fduP1bFs/sVfS37et+j5RS6Mg+YEzmerW+DvuT0u2vWrFm28wNGfo8Aig/CHQAAPmETgec3pPz555+ueaQNjPLoo49meG7QoEH7dR6RsBDdVDM/bN47CzcrV67cr+NbSLJQY1W4ypUrZ3neqmbWNDNzuNtfNmiKTZdgoc4GtbHRKDt27OgCbEHe90hV08JzdIXTBt/J7m9izJgxql27tpo2bZqv/Vu10YJiXk1RARQ99LkDAMAnbCRLm3rARkPMrmq2c+fO9FEtI1WczE0nbfTL/A7JnxOr+FjAi0zhEM1GYLTzyMyqVdYs0xx11FH7fGzbj00r0aJFC1133XXq1q1bloeNGjpz5kz9/vvvKkh23TaNgPX3s+aZ1ncuus9fQd33SDXyu+++y7D8+eefz7JupE/ifffdp1AolK8mmZHf2+mnn56v8wFQdFC5AwDAJ6xiZ1WjCy+80M1tZ33vrM+Y9eGywUIsdFiAaNeunaviWACz/mA2mIetb9Mn2OTjFoyyG9hkb1gzSxt23/rURVeubBqHX375RV26dHF91KxJok1c/sknn7hj2oTjNrXCvrIBY5YvX65rr702x3VsaoRHHnnE9ctr3bq1CpKFuS+++MJNQ2HXZr+LaAVx3y2cWljr06eP+71a9c6qc9aPMDO7PrtWe1hTXfu9WNNc+73YsawJ7O7duzNsY8usP6L9LgAUL4Q7AAB8Vr2zipRV76xfmY1caQOv2Pxyd9xxhxuRMlJBsjnx+vXr5+Z+27Fjh2uGZ99bs8H9DXfXX3+9nnjiCdfM0oJOdJNIG9DEBhsZO3asqzBaKLXQY5UnG0XTBiPZVxbYjM0ZlxO7Tqt+ffzxx3rxxRfdZPEFxQaEsbBl12WVQxvpM1pB3HcbbMUCmP0+bfAWm8vPrtd+35EBeKLZfInWt8/mPHzppZfcMa3Ca8fNPPG6PWcfAtiorXFxcQVwRwAcTAGbD+GgHhEAAJQIN9xwg6uk2YTmkQm8UbRFJlW3/pLRFVcAxQN97gAAwAHx2GOPuSkSbIATFH3WF9IqvjYoDMEOKJ6o3AEAAACAD1C5AwAAAAAfINwBAAAAgA8Q7gAAAADABwh3AAAAAOADhDsAAAAA8AHCHQAAAAD4AOEOAAAAAHyAcAcAAAAAPkC4AwAAAAAfINwBAAAAgIq//wchgRaYnNZjnQAAAABJRU5ErkJggg==",
"text/plain": [
"<Figure size 800x650 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"shap.plots.bar(shap_values[:, :, \"POSITIVE\"].mean(0), order=shap.Explanation.argsort)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"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.9.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}