diff --git a/cicd_utils/cicd/test_helpers.py b/cicd_utils/cicd/test_helpers.py index 64f254bd..12e34396 100644 --- a/cicd_utils/cicd/test_helpers.py +++ b/cicd_utils/cicd/test_helpers.py @@ -1,6 +1,7 @@ from __future__ import annotations import contextlib +import copy import pickle import sys from importlib.util import module_from_spec, spec_from_file_location @@ -8,6 +9,10 @@ from typing import TYPE_CHECKING, Any, TypeVar, cast from unittest.mock import MagicMock, patch +import plotly.io +import pytest_socket +from plotly import graph_objects as go + if TYPE_CHECKING: from collections.abc import Iterator from importlib.abc import Loader @@ -17,6 +22,24 @@ from plotly.graph_objs import Figure +_PLOTLY_SHOW_DEEPCOPY = copy.deepcopy(plotly.io.show) + + +def plotly_show_browser(fig: go.Figure, renderer: str = "browser", **kwargs: Any) -> None: + """Display a Plotly figure in a new browser tab. + + This temporarily enables network connections (if disabled by pytest-socket) + and ensures the real (unpatched) `plotly.io.show()` is used. Useful for + debugging test failures by viewing the actual rendered figure in a browser + window. + """ + try: + pytest_socket.enable_socket() + _PLOTLY_SHOW_DEEPCOPY(fig=fig.to_dict(), renderer=renderer, **kwargs) + finally: + pytest_socket.disable_socket() + + @contextlib.contextmanager def patch_plotly_show() -> Iterator[None]: """Patch the :func:`plotly.io.show()` function to skip any rendering steps diff --git a/cicd_utils/ridgeplot_examples/_lincoln_weather.py b/cicd_utils/ridgeplot_examples/_lincoln_weather.py index 4b0484e1..373a5329 100644 --- a/cicd_utils/ridgeplot_examples/_lincoln_weather.py +++ b/cicd_utils/ridgeplot_examples/_lincoln_weather.py @@ -1,19 +1,13 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Literal +from typing import TYPE_CHECKING if TYPE_CHECKING: - from collections.abc import Collection - import plotly.graph_objects as go - from ridgeplot._color.interpolation import SolidColormode - from ridgeplot._types import Color, ColorScale - def main( - colorscale: ColorScale | Collection[Color] | str | None = "Inferno", - colormode: SolidColormode | Literal["fillgradient"] = "fillgradient", + color_discrete_map: dict[str, str] | None = None, ) -> go.Figure: import numpy as np @@ -33,9 +27,10 @@ def main( fig = ridgeplot( samples=samples, + labels=[["Min Temperature [F]", "Max Temperature [F]"]] * len(months), row_labels=months, - colorscale=colorscale, - colormode=colormode, + colorscale="Inferno", + color_discrete_map=color_discrete_map, bandwidth=4, kde_points=np.linspace(-40, 110, 400), spacing=0.3, diff --git a/cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py b/cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py index f05af641..0c6de7e8 100644 --- a/cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py +++ b/cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py @@ -10,8 +10,10 @@ def main() -> go.Figure: fig = lincoln_weather( - colorscale=["orangered", "deepskyblue"], - colormode="trace-index-row-wise", + color_discrete_map={ + "Min Temperature [F]": "deepskyblue", + "Max Temperature [F]": "orangered", + } ) return fig diff --git a/docs/getting_started/getting_started.md b/docs/getting_started/getting_started.md index 9bc70527..020f4bb5 100644 --- a/docs/getting_started/getting_started.md +++ b/docs/getting_started/getting_started.md @@ -134,6 +134,7 @@ samples = [ # And finish by styling it up to your liking! fig = ridgeplot( samples=samples, + labels=[["Min Temperature [F]", "Max Temperature [F]"]] * len(months), row_labels=months, colorscale="Inferno", bandwidth=4, @@ -228,6 +229,7 @@ Finally, we can pass the {py:paramref}`~ridgeplot.ridgeplot.samples` list to the ```python fig = ridgeplot( samples=samples, + labels=[["Min Temperature [F]", "Max Temperature [F]"]] * len(months), row_labels=months, colorscale="Inferno", bandwidth=4, @@ -237,8 +239,8 @@ fig = ridgeplot( fig.update_layout( title="Minimum and maximum daily temperatures in Lincoln, NE (2016)", - height=650, - width=950, + height=600, + width=800, font_size=14, plot_bgcolor="rgb(245, 245, 245)", xaxis_gridcolor="white", @@ -261,15 +263,24 @@ fig.show() We are currently investigating the best way to support all color options available in Plotly Express. If you have any suggestions or requests, or just want to track the progress, please check out {gh-issue}`226`. ::: -The {py:func}`~ridgeplot.ridgeplot()` function offers flexible customisation options that help you control the automatic coloring of ridgeline traces. Take a look at {py:paramref}`~ridgeplot.ridgeplot.colorscale`, {py:paramref}`~ridgeplot.ridgeplot.colormode`, and {py:paramref}`~ridgeplot.ridgeplot.opacity` for more information. +The {py:func}`~ridgeplot.ridgeplot()` function offers flexible customisation options that help you control the exact coloring of ridgeline traces. Take a look at {py:paramref}`~ridgeplot.ridgeplot.colorscale`, {py:paramref}`~ridgeplot.ridgeplot.colormode`, {py:paramref}`~ridgeplot.ridgeplot.color_discrete_map`, {py:paramref}`~ridgeplot.ridgeplot.opacity`, and {py:paramref}`~ridgeplot.ridgeplot.line_color` for a detailed description of the available options. + +As a simple (but quite common) example, we'll try to adjust the output of the previous example to use different discrete colors for the minimum and maximum temperature traces. Specifically, we'll set all minimum temperature traces to a shade of blue and all maximum temperature traces to a shade of red. To achieve this, we just need to set the {py:paramref}`~ridgeplot.ridgeplot.color_discrete_map` parameter to a dictionary that maps the trace labels to the desired colors. -To demonstrate how these options can be used, we can try to adjust the output from the previous example to use different colors for the minimum and maximum temperature traces. For instance, setting all minimum temperature traces to a shade of blue and all maximum temperature traces to a shade of red. To achieve this, we just need to adjust the {py:paramref}`~ridgeplot.ridgeplot.colorscale` and {py:paramref}`~ridgeplot.ridgeplot.colormode` parameters in the call to the {py:func}`~ridgeplot.ridgeplot()` function. _i.e._, +:::{note} +Because the {py:paramref}`~ridgeplot.ridgeplot.color_discrete_map` parameter takes precedence over the {py:paramref}`~ridgeplot.ridgeplot.colorscale` and {py:paramref}`~ridgeplot.ridgeplot.colormode` parameters, we can keep them as they are in the previous example. However, since their behavior will be overridden by {py:paramref}`~ridgeplot.ridgeplot.color_discrete_map`, it is a good practice to remove them from the function call to avoid any confusion. +::: ```python fig = ridgeplot( - # Same options as before, with only the following changes: - colorscale=["orangered", "deepskyblue"], - colormode="trace-index-row-wise", + # Same options as before, with the + # addition of `color_discrete_map` + # ... + color_discrete_map={ + "Min Temperature [F]": "deepskyblue", + "Max Temperature [F]": "orangered", + } + # ... ) ``` diff --git a/docs/reference/changelog.md b/docs/reference/changelog.md index 15ef4e6c..4321af27 100644 --- a/docs/reference/changelog.md +++ b/docs/reference/changelog.md @@ -8,6 +8,10 @@ Unreleased changes - Dropped support for Python 3.9, in accordance with the official Python support policy[^1] ({gh-pr}`345`) - Bump project classification from Pre-Alpha to Alpha ({gh-pr}`336`) +### Features + +- Implement a new `color_discrete_map` parameter to allow users to specify custom colors for each trace ({gh-pr}`348`) + ### CI/CD - Bump actions/github-script from 7 to 8 ({gh-pr}`338`) diff --git a/src/ridgeplot/_figure_factory.py b/src/ridgeplot/_figure_factory.py index d5e48334..a8804ffb 100644 --- a/src/ridgeplot/_figure_factory.py +++ b/src/ridgeplot/_figure_factory.py @@ -23,7 +23,6 @@ ShallowTraceTypesArray, TraceType, TraceTypesArray, - is_flat_str_collection, is_shallow_trace_types_array, is_trace_type, is_trace_types_array, @@ -50,9 +49,9 @@ def normalise_trace_types( trace_types = cast("TraceTypesArray", [[trace_types] * len(row) for row in densities]) elif is_shallow_trace_types_array(trace_types): trace_types = nest_shallow_collection(trace_types) - trace_types = normalise_row_attrs(trace_types, l2_target=densities) + trace_types = normalise_row_attrs(attrs=trace_types, l2_target=densities) elif is_trace_types_array(trace_types): - trace_types = normalise_row_attrs(trace_types, l2_target=densities) + trace_types = normalise_row_attrs(attrs=trace_types, l2_target=densities) else: raise TypeError(f"Invalid trace_type: {trace_types}") return trace_types @@ -67,9 +66,7 @@ def normalise_trace_labels( ids = iter(range(1, n_traces + 1)) trace_labels = [[f"Trace {next(ids)}" for _ in row] for row in densities] else: - if is_flat_str_collection(trace_labels): - trace_labels = nest_shallow_collection(trace_labels) - trace_labels = normalise_row_attrs(trace_labels, l2_target=densities) + trace_labels = normalise_row_attrs(attrs=trace_labels, l2_target=densities) return trace_labels @@ -77,7 +74,7 @@ def normalise_row_labels(trace_labels: LabelsArray) -> Collection[str]: return [",".join(ordered_dedup(row)) for row in trace_labels] -def update_layout( +def _update_layout( fig: go.Figure, row_labels: Collection[str] | Literal[False], tickvals: list[float], @@ -123,12 +120,13 @@ def update_layout( def create_ridgeplot( densities: Densities, + trace_labels: LabelsArray | ShallowLabelsArray | None, trace_types: TraceTypesArray | ShallowTraceTypesArray | TraceType, row_labels: Collection[str] | None | Literal[False], colorscale: ColorScale | Collection[Color] | str | None, - opacity: float | None, colormode: Literal["fillgradient"] | SolidColormode, - trace_labels: LabelsArray | ShallowLabelsArray | None, + color_discrete_map: dict[str, str] | None, + opacity: float | None, line_color: Color | Literal["fill-color"], line_width: float | None, spacing: float, @@ -159,6 +157,15 @@ def create_ridgeplot( elif row_labels is not False and len(row_labels) != n_rows: raise ValueError(f"Expected {n_rows} row_labels, got {len(row_labels)} instead.") + if color_discrete_map: + missing_labels = { + label for row in trace_labels for label in row if label not in color_discrete_map + } + if missing_labels: + raise ValueError( + f"The following labels are missing from 'color_discrete_map': {missing_labels}", + ) + # Force cast certain arguments to the expected types line_width = float(line_width) if line_width is not None else None spacing = float(spacing) @@ -176,12 +183,18 @@ def create_ridgeplot( x_min=x_min, x_max=x_max, ) - solid_colors = compute_solid_colors( - colorscale=colorscale, - colormode=colormode if colormode != "fillgradient" else "mean-minmax", - opacity=opacity, - interpolation_ctx=interpolation_ctx, - ) + if color_discrete_map: + solid_colors = ( + (color_discrete_map[label] for label in row_trace_labels) + for row_trace_labels in trace_labels + ) + else: + solid_colors = compute_solid_colors( + colorscale=colorscale, + colormode=colormode if colormode != "fillgradient" else "mean-minmax", + opacity=opacity, + interpolation_ctx=interpolation_ctx, + ) tickvals: list[float] = [] fig = go.Figure() @@ -207,14 +220,14 @@ def create_ridgeplot( fig=fig, coloring_ctx=ColoringContext( colorscale=colorscale, - colormode=colormode, + fillgradient=colormode == "fillgradient" and not color_discrete_map, opacity=opacity, interpolation_ctx=interpolation_ctx, ), ) ith_trace += 1 - fig = update_layout( + fig = _update_layout( fig, row_labels=row_labels, tickvals=tickvals, diff --git a/src/ridgeplot/_kde.py b/src/ridgeplot/_kde.py index d9110648..71374a3b 100644 --- a/src/ridgeplot/_kde.py +++ b/src/ridgeplot/_kde.py @@ -94,7 +94,7 @@ def normalize_sample_weights( return [[sample_weights] * len(row) for row in samples] if _is_shallow_sample_weights(sample_weights): sample_weights = nest_shallow_collection(sample_weights) - sample_weights = normalise_row_attrs(sample_weights, l2_target=samples) + sample_weights = normalise_row_attrs(attrs=sample_weights, l2_target=samples) return sample_weights diff --git a/src/ridgeplot/_obj/traces/area.py b/src/ridgeplot/_obj/traces/area.py index ec532d2e..e88200a8 100644 --- a/src/ridgeplot/_obj/traces/area.py +++ b/src/ridgeplot/_obj/traces/area.py @@ -17,7 +17,7 @@ class AreaTrace(RidgeplotTrace): _DEFAULT_LINE_WIDTH: ClassVar[float] = 1.5 def _get_coloring_kwargs(self, ctx: ColoringContext) -> dict[str, Any]: - if ctx.colormode == "fillgradient": + if ctx.fillgradient: if ctx.opacity is not None: # HACK: Plotly doesn't yet support setting the fill opacity # for traces with `fillgradient`. As a workaround, we diff --git a/src/ridgeplot/_obj/traces/bar.py b/src/ridgeplot/_obj/traces/bar.py index 628eecdf..79a9592c 100644 --- a/src/ridgeplot/_obj/traces/bar.py +++ b/src/ridgeplot/_obj/traces/bar.py @@ -16,7 +16,7 @@ class BarTrace(RidgeplotTrace): _DEFAULT_LINE_WIDTH: ClassVar[float] = 0.5 def _get_coloring_kwargs(self, ctx: ColoringContext) -> dict[str, Any]: - if ctx.colormode == "fillgradient": + if ctx.fillgradient: color_kwargs = dict( marker_line_color=self.line_color, marker_color=[ diff --git a/src/ridgeplot/_obj/traces/base.py b/src/ridgeplot/_obj/traces/base.py index 12f56942..8779d724 100644 --- a/src/ridgeplot/_obj/traces/base.py +++ b/src/ridgeplot/_obj/traces/base.py @@ -11,7 +11,7 @@ if TYPE_CHECKING: from plotly import graph_objects as go - from ridgeplot._color.interpolation import InterpolationContext, SolidColormode + from ridgeplot._color.interpolation import InterpolationContext from ridgeplot._types import Color, ColorScale, DensityTrace @@ -44,7 +44,7 @@ @dataclass class ColoringContext: colorscale: ColorScale - colormode: Literal["fillgradient"] | SolidColormode + fillgradient: bool opacity: float | None interpolation_ctx: InterpolationContext diff --git a/src/ridgeplot/_ridgeplot.py b/src/ridgeplot/_ridgeplot.py index 0e7220b6..1acf6dcf 100644 --- a/src/ridgeplot/_ridgeplot.py +++ b/src/ridgeplot/_ridgeplot.py @@ -114,6 +114,7 @@ def ridgeplot( # Coloring and styling parameters colorscale: ColorScale | Collection[Color] | str | None = None, colormode: Literal["fillgradient"] | SolidColormode = "fillgradient", + color_discrete_map: dict[str, str] | None = None, opacity: float | None = None, line_color: Color | Literal["fill-color"] = "black", line_width: float | None = None, @@ -337,6 +338,24 @@ def ridgeplot( The default value changed from ``"mean-minmax"`` to ``"fillgradient"``. + color_discrete_map: dict or None + A mapping from trace labels to specific colors. + + This parameter is useful when you want to have full manual control over + the colors assigned to each trace. If specified, the assigned colors + are determined by looking up the trace's label as a key in this + dictionary. All labels must be present as keys in the dictionary. + + Note that this parameter overrides any value specified for + :paramref:`.colorscale` and :paramref:`.colormode`. In this case, the + color assigned to each trace will be a solid color, as specified in + this dictionary. + + If not specified (default), the colors will be determined using the + :paramref:`.colorscale` and :paramref:`.colormode` parameters. + + .. versionadded:: 0.5.0 + opacity : float or None If None (default), this parameter will be ignored and the transparency values of the specified color-scale will remain untouched. Otherwise, @@ -485,8 +504,9 @@ def ridgeplot( trace_types=trace_type, row_labels=row_labels, colorscale=colorscale, - opacity=opacity, colormode=colormode, + color_discrete_map=color_discrete_map, + opacity=opacity, line_color=line_color, line_width=line_width, spacing=spacing, diff --git a/src/ridgeplot/_types.py b/src/ridgeplot/_types.py index ab628c01..c6731f26 100644 --- a/src/ridgeplot/_types.py +++ b/src/ridgeplot/_types.py @@ -104,6 +104,30 @@ ... ] """ + +def is_collection_l2(obj: Any) -> TypeIs[CollectionL2[Any]]: + """Type guard for :data:`CollectionL2`. + + Examples + -------- + >>> is_collection_l2("definitely not") + False + >>> is_collection_l2([1, 2, 3]) + False + >>> is_collection_l2([[1, 2], [3, 4]]) + True + >>> is_collection_l2([["a", "b"], ["c", "d"]]) + True + >>> is_collection_l2([["a", "b"], "c"]) + False + >>> is_collection_l2([[[1, 2], [3, 4]], [[5, 6], [7, 8]]]) # 3-level deep + True + """ + return isinstance(obj, Collection) and all( + isinstance(item, Collection) and not isinstance(item, str) for item in obj + ) + + # ======================================================== # --- Numeric types # ======================================================== @@ -342,6 +366,37 @@ def is_shallow_densities(obj: Any) -> TypeIs[ShallowDensities]: return isinstance(obj, Collection) and all(map(is_density_trace, obj)) +def is_densities(obj: Any) -> TypeIs[Densities]: + """Type guard for :data:`Densities`. + + Examples + -------- + >>> is_densities("definitely not") + False + >>> is_densities([["also"], ["not"]]) + False + >>> is_densities([[["still"], ["not"]], [["nope"]]]) + False + >>> shallow_density = [[(0, 0), (1, 1)], [(2, 2), (3, 1)]] + >>> is_densities(shallow_density) + False + >>> deep_density = [ + ... [ # Row 1 + ... [(0, 0), (1, 1), (2, 0)], # Trace 1 + ... [(1, 0), (2, 1), (3, 2), (4, 1)], # Trace 2 + ... [(3, 0), (4, 1), (5, 2), (6, 1), (7, 0)], # Trace 3 + ... ], + ... [ # Row 2 + ... [(-2, 0), (-1, 1), (0, 0)], # Trace 4 + ... [(0, 0), (1, 1), (2, 1), (3, 0)], # Trace 5 + ... ], + ... ] + >>> is_densities(deep_density) + True + """ + return isinstance(obj, Collection) and all(map(is_shallow_densities, obj)) + + # ======================================================== # --- `Samples` array # ======================================================== @@ -668,6 +723,8 @@ def is_flat_numeric_collection(obj: Any) -> TypeIs[CollectionL1[Numeric]]: return isinstance(obj, Collection) and all(map(_is_numeric, obj)) +# TODO: Consider getting rid of this function and using +# the list comprehension directly where needed. def nest_shallow_collection(shallow_collection: Collection[_T]) -> Collection[Collection[_T]]: """Convert a *shallow* collection type into a *deep* collection type. diff --git a/src/ridgeplot/_utils.py b/src/ridgeplot/_utils.py index bcffc2b1..9d5a705f 100644 --- a/src/ridgeplot/_utils.py +++ b/src/ridgeplot/_utils.py @@ -7,6 +7,8 @@ from typing_extensions import TypeVar +from ridgeplot._types import is_collection_l2 + if TYPE_CHECKING: from typing_extensions import Any @@ -208,7 +210,10 @@ def ordered_dedup(seq: Collection[_V]) -> list[_V]: return list(dict.fromkeys(seq)) -def normalise_row_attrs(attrs: CollectionL2[_V], l2_target: CollectionL2[Any]) -> CollectionL2[_V]: +def normalise_row_attrs( + attrs: Collection[_V] | CollectionL2[_V], + l2_target: CollectionL2[Any], +) -> list[list[_V]]: """Validate and normalise the attributes over a CollectionL2 array such that the number of attributes matches the number of traces in each row. @@ -221,7 +226,7 @@ def normalise_row_attrs(attrs: CollectionL2[_V], l2_target: CollectionL2[Any]) - Returns ------- - CollectionL2 + list[list[_V]] The normalised attributes collection. Raises @@ -232,6 +237,27 @@ def normalise_row_attrs(attrs: CollectionL2[_V], l2_target: CollectionL2[Any]) - Examples -------- + >>> densities = [[[(0, 0), (1, 1), (2, 0)]]] # Single row, single trace + >>> normalise_row_attrs(["A"], densities) + [['A']] + >>> normalise_row_attrs([["A", "B"]], densities) + Traceback (most recent call last): + ... + ValueError: Mismatch between number of traces (1) and number of attrs (2) for row 0. + >>> densities = [ # Row 1 + ... [ + ... [(0, 0), (1, 1), (2, 0)], # Trace 1 + ... [(1, 0), (2, 1), (3, 0)], # Trace 2 + ... ], + ... ] + >>> normalise_row_attrs(["A"], densities) + [['A', 'A']] + >>> normalise_row_attrs(["A", "B"], densities) + [['A', 'B']] + >>> normalise_row_attrs(["A", "B", "C"], densities) + Traceback (most recent call last): + ... + ValueError: Mismatch between number of traces (2) and number of attrs (3) for row 0. >>> densities = [ ... [ # Row 1 ... [(0, 0), (1, 1), (2, 0)], # Trace 1 @@ -254,6 +280,14 @@ def normalise_row_attrs(attrs: CollectionL2[_V], l2_target: CollectionL2[Any]) - ... ValueError: Mismatch between number of traces (3) and number of attrs (2) for row 0. + >>> samples = [ + ... [ # Row 1 + ... [0, 1, 1, 2, 2, 2, 3, 3, 4], # Trace 1 + ... [1, 2, 2, 3, 3, 3, 4, 4, 5], # Trace 2 + ... ], + ... ] + >>> normalise_row_attrs(["A", "B"], samples) + [['A', 'B']] >>> samples = [ ... [ # Row 1 ... [0, 1, 1, 2, 2, 2, 3, 3, 4], # Trace 1 @@ -267,24 +301,32 @@ def normalise_row_attrs(attrs: CollectionL2[_V], l2_target: CollectionL2[Any]) - ... ] >>> normalise_row_attrs([["A"], ["B"]], samples) [['A', 'A', 'A'], ['B', 'B']] + >>> normalise_row_attrs([[(1, 2), "34", None], ["C", ["D", "E"]]], samples) + [[(1, 2), '34', None], ['C', ['D', 'E']]] >>> normalise_row_attrs([["A"], ["B", "C", "X"]], samples) Traceback (most recent call last): ... ValueError: Mismatch between number of traces (2) and number of attrs (3) for row 1. """ - norm_attrs = [] - for i, (row, row_attr) in enumerate(zip(l2_target, attrs)): - n_traces = len(row) - n_attrs = len(row_attr) - if n_traces != n_attrs: - if n_attrs != 1: - raise ValueError( - f"Mismatch between number of traces ({n_traces}) " - f"and number of attrs ({n_attrs}) for row {i}." - ) - row_attr = list(row_attr) * n_traces # noqa: PLW2901 - norm_attrs.append(row_attr) - return norm_attrs + if not is_collection_l2(attrs): + attrs = [attrs] if len(l2_target) == 1 else [[attr] for attr in attrs] + + result: list[list[_V]] = [] + for i, (row_attrs, row_traces) in enumerate(zip(attrs, l2_target, strict=True)): + n_traces = len(row_traces) + n_attrs = len(row_attrs) + if n_attrs == 1: + # Broadcast single attribute to all traces in this row + result.append(list(row_attrs) * n_traces) + elif n_attrs == n_traces: + # Use attributes as-is + result.append(list(row_attrs)) + else: + raise ValueError( + f"Mismatch between number of traces ({n_traces}) " + f"and number of attrs ({n_attrs}) for row {i}." + ) + return result def normalise_densities(densities: Densities, norm: NormalisationOption) -> Densities: diff --git a/tests/e2e/artifacts/lincoln_weather.json b/tests/e2e/artifacts/lincoln_weather.json index e09dcf43..0170cd0c 100644 --- a/tests/e2e/artifacts/lincoln_weather.json +++ b/tests/e2e/artifacts/lincoln_weather.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 1","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 2","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 3","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 4","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 5","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 6","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 7","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 8","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 9","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 10","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 11","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 12","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 13","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 14","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 15","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 16","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 17","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 18","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 19","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 20","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 21","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 22","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 23","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 24","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"zeroline":false,"showgrid":true,"tickmode":"array","tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":["January","February","March","April","May","June","July","August","September","October","November","December"],"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"zeroline":false,"showgrid":true,"tickmode":"array","tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":["January","February","March","April","May","June","July","August","September","October","November","December"],"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} diff --git a/tests/e2e/artifacts/lincoln_weather_red_blue.json b/tests/e2e/artifacts/lincoln_weather_red_blue.json index 530336db..96fcbb0c 100644 --- a/tests/e2e/artifacts/lincoln_weather_red_blue.json +++ b/tests/e2e/artifacts/lincoln_weather_red_blue.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 1","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 2","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 3","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 4","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 5","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 6","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 7","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 8","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 9","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 10","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 11","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 12","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 13","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 14","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 15","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 16","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 17","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 18","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 19","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 20","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 21","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 22","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 23","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 24","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"zeroline":false,"showgrid":true,"tickmode":"array","tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":["January","February","March","April","May","June","July","August","September","October","November","December"],"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillcolor":"deepskyblue","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Min Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillcolor":"orangered","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Max Temperature [F]","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"zeroline":false,"showgrid":true,"tickmode":"array","tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":["January","February","March","April","May","June","July","August","September","October","November","December"],"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} diff --git a/tests/unit/obj/traces/test_bar.py b/tests/unit/obj/traces/test_bar.py index a9114c31..e3e3f069 100644 --- a/tests/unit/obj/traces/test_bar.py +++ b/tests/unit/obj/traces/test_bar.py @@ -40,7 +40,7 @@ def test_coloring_kwargs_fillgradient( ) -> None: coloring_ctx = ColoringContext( colorscale=[(0.0, "red"), (1.0, "blue")], - colormode="fillgradient", + fillgradient=True, opacity=None, interpolation_ctx=interpolation_ctx, ) @@ -55,7 +55,7 @@ def test_coloring_kwargs_fillcolor( ) -> None: coloring_ctx = ColoringContext( colorscale=[(0.0, "red"), (1.0, "blue")], - colormode="trace-index", + fillgradient=False, opacity=None, interpolation_ctx=interpolation_ctx, ) diff --git a/tests/unit/test_figure_factory.py b/tests/unit/test_figure_factory.py index 15d46db5..c24fa3da 100644 --- a/tests/unit/test_figure_factory.py +++ b/tests/unit/test_figure_factory.py @@ -4,10 +4,108 @@ import pytest -from ridgeplot._figure_factory import create_ridgeplot +from ridgeplot._figure_factory import create_ridgeplot, normalise_trace_labels +from ridgeplot._types import is_densities if TYPE_CHECKING: - from ridgeplot._types import Densities + from ridgeplot._types import Densities, LabelsArray, ShallowLabelsArray + + +@pytest.mark.parametrize( + ("densities", "expected_trace_labels"), + [ + # single row, single trace + ( + [[[(0, 0), (1, 1), (2, 0)]]], + [["Trace 1"]], + ), + # single row, multi trace + ( + [[[(0, 0), (1, 1), (2, 0)], [(1, 0), (2, 1), (3, 0)]]], + [["Trace 1", "Trace 2"]], + ), + # multi row, single trace + ( + [[[(0, 0), (1, 1), (2, 0)]], [[(1, 0), (2, 2), (3, 0)]], [[(2, 1), (3, 2), (4, 1)]]], + [["Trace 1"], ["Trace 2"], ["Trace 3"]], + ), + # multi row, multi trace + ( + [ + [[(0, 0), (1, 1), (2, 0)], [(1, 0), (2, 2), (3, 0)], [(2, 1), (3, 2), (4, 1)]], + [[(0, 4), (1, 4), (2, 8)], [(1, 4), (2, 4), (3, 2)]], + ], + [["Trace 1", "Trace 2", "Trace 3"], ["Trace 4", "Trace 5"]], + ), + ], + ids=[ + "single-row, single-trace", + "single-row, multi-trace", + "multi-row, single-trace", + "multi-row, multi-trace", + ], +) +def test_normalise_trace_labels_no_labels( + densities: Densities, + expected_trace_labels: LabelsArray, +) -> None: + assert is_densities(densities) + n_traces = sum(len(row) for row in densities) + trace_labels = normalise_trace_labels(densities=densities, trace_labels=None, n_traces=n_traces) + assert trace_labels == expected_trace_labels + + +@pytest.mark.parametrize( + ("densities", "trace_labels", "expected_trace_labels"), + [ + # single row, single trace + ( + [[[(0, 0), (1, 1), (2, 0)]]], + ["A"], + [["A"]], + ), + # single row, multi trace + ( + [[[(0, 0), (1, 1), (2, 0)], [(1, 0), (2, 1), (3, 0)]]], + ["A", "B"], + [["A", "B"]], + ), + # multi row, single trace + ( + [[[(0, 0), (1, 1), (2, 0)]], [[(1, 0), (2, 2), (3, 0)]], [[(2, 1), (3, 2), (4, 1)]]], + ["A", "B", "C"], + [["A"], ["B"], ["C"]], + ), + # multi row, multi trace + ( + [ + [[(0, 0), (1, 1), (2, 0)], [(1, 0), (2, 2), (3, 0)], [(2, 1), (3, 2), (4, 1)]], + [[(0, 4), (1, 4), (2, 8)], [(1, 4), (2, 4), (3, 2)]], + ], + [["A", "B", "C"], ["D", "E"]], + [["A", "B", "C"], ["D", "E"]], + ), + ], + ids=[ + "single-row, single-trace", + "single-row, multi-trace", + "multi-row, single-trace", + "multi-row, multi-trace", + ], +) +def test_normalise_trace_labels( + densities: Densities, + trace_labels: LabelsArray | ShallowLabelsArray, + expected_trace_labels: LabelsArray, +) -> None: + assert is_densities(densities) + n_traces = sum(len(row) for row in densities) + norm_trace_labels = normalise_trace_labels( + densities=densities, + trace_labels=trace_labels, + n_traces=n_traces, + ) + assert norm_trace_labels == expected_trace_labels class TestCreateRidgeplot: @@ -25,12 +123,13 @@ def test_densities_must_be_4d(self, densities: Densities) -> None: with pytest.raises(ValueError, match="Expected a 4D array of densities"): create_ridgeplot( densities=densities, + trace_labels=..., # type: ignore[reportArgumentType] trace_types=..., # type: ignore[reportArgumentType] row_labels=..., # type: ignore[reportArgumentType] colorscale=..., # type: ignore[reportArgumentType] - opacity=..., # type: ignore[reportArgumentType] colormode=..., # type: ignore[reportArgumentType] - trace_labels=..., # type: ignore[reportArgumentType] + color_discrete_map=..., # type: ignore[reportArgumentType] + opacity=..., # type: ignore[reportArgumentType] line_color=..., # type: ignore[reportArgumentType] line_width=..., # type: ignore[reportArgumentType] spacing=..., # type: ignore[reportArgumentType] diff --git a/tests/unit/test_functional.py b/tests/unit/test_functional.py new file mode 100644 index 00000000..d58efb0a --- /dev/null +++ b/tests/unit/test_functional.py @@ -0,0 +1,30 @@ +"""A collection of miscellaneous functional tests.""" + +from __future__ import annotations + +from ridgeplot import ridgeplot + + +def test_color_discrete_map_eq_colormode_hack() -> None: + """Test that using an "*index*" colormode is a hack that produces the + same result as using the new `color_discrete_map` argument.""" + red = "rgba(255, 0, 0, 1)" + blue = "rgba(0, 0, 255, 1)" + fig1 = ridgeplot( + samples=[[[1, 2, 3], [4, 5, 6]]], + color_discrete_map={"A": blue, "B": red}, + labels=["A", "B"], + ) + fig2 = ridgeplot( + samples=[[[1, 2, 3], [4, 5, 6]]], + colorscale=[red, blue], + colormode="trace-index-row-wise", + labels=["A", "B"], + ) + fig3 = ridgeplot( + samples=[[[1, 2, 3], [4, 5, 6]]], + colorscale=[red, blue], + colormode="trace-index", + labels=["A", "B"], + ) + assert fig1 == fig2 == fig3 diff --git a/tests/unit/test_ridgeplot.py b/tests/unit/test_ridgeplot.py index 75afd090..c6c7df3a 100644 --- a/tests/unit/test_ridgeplot.py +++ b/tests/unit/test_ridgeplot.py @@ -1,5 +1,6 @@ from __future__ import annotations +import re from typing import TYPE_CHECKING, Any import plotly.express as px @@ -52,18 +53,19 @@ def test_shallow_samples() -> None: def test_shallow_labels() -> None: - shallow_labels = ["trace 1", "trace 2"] - assert ( - ridgeplot(samples=[[1, 2, 3], [1, 2, 3]], labels=shallow_labels) == - ridgeplot(samples=[[1, 2, 3], [1, 2, 3]], labels=nest_shallow_collection(shallow_labels)) - ) # fmt: skip + fig1 = ridgeplot(samples=[[1, 2, 3], [1, 2, 3]], labels=["A", "B"]) + fig2 = ridgeplot(samples=[[1, 2, 3], [1, 2, 3]], labels=[["A"], ["B"]]) + assert fig1 == fig2 + assert fig1.data[1].name == "A" + assert fig1.data[3].name == "B" def test_y_labels_dedup() -> None: - assert ( - ridgeplot(samples=[[[1, 2, 3], [4, 5, 6]]], labels=["a"]) == - ridgeplot(samples=[[[1, 2, 3], [4, 5, 6]]], labels=[["a", "a"]]) - ) # fmt: skip + fig1 = ridgeplot(samples=[[[1, 2, 3], [4, 5, 6]]], labels=["A"]) + fig2 = ridgeplot(samples=[[[1, 2, 3], [4, 5, 6]]], labels=[["A", "A"]]) + assert fig1 == fig2 + assert fig1.data[1].name == "A" + assert fig1.data[3].name == "A" # ============================================================== @@ -169,6 +171,33 @@ def test_colorscale_invalid(invalid_colorscale: ColorScale | Collection[Color] | ridgeplot(samples=[[[1, 2, 3], [4, 5, 6]]], colorscale=invalid_colorscale) +# ============================================================== +# --- param: color_discrete_map +# ============================================================== + + +def test_color_discrete_map() -> None: + fig = ridgeplot( + samples=[[[1, 2, 3], [4, 5, 6]]], + color_discrete_map={"A": "rgba(0, 128, 0, 1.0)", "B": "rgba(255, 165, 0, 1.0)"}, + labels=["A", "B"], + ) + assert fig.data[1].fillcolor == "rgba(0, 128, 0, 1.0)" + assert fig.data[3].fillcolor == "rgba(255, 165, 0, 1.0)" + + +def test_missing_labels() -> None: + with pytest.raises( + ValueError, + match=re.escape("The following labels are missing from 'color_discrete_map': {'B'}"), + ): + ridgeplot( + samples=[[[1, 2, 3], [4, 5, 6]]], + color_discrete_map={"A": "rgba(0, 128, 0, 1.0)"}, + labels=["A", "B"], + ) + + # ============================================================== # --- param: opacity # ==============================================================