Similarity ratio balanced top n tests
from typing import List
import numpy as np
import pandas as pd
import plotly.express as px
from plotly.subplots import make_subplots
from sklearn.metrics import roc_curve, roc_auc_score
from prompt_playground.actionclip import images_features_df, VARIATION_NAMES
from prompt_playground.actionclip_similarities import (
SimilarityParams,
clips_texts_similarities,
TopClassificationMethod,
)
Created a temporary directory at /var/folders/yc/slfs2kzs1d72wd8b20xw0nf80000gn/T/tmpf7ms79es
Writing /var/folders/yc/slfs2kzs1d72wd8b20xw0nf80000gn/T/tmpf7ms79es/_remote_module_non_scriptable.py
def infer(TEXTS: List[str], TEXT_CLASSIFICATIONS: List[bool], VARIATION: str):
similarities = clips_texts_similarities(
SimilarityParams(
texts=TEXTS,
classifications=TEXT_CLASSIFICATIONS,
model_variation=VARIATION,
text_classification_method=TopClassificationMethod.any,
texts_to_subtract=[],
apply_softmax=False,
)
).similarities
alarms_series = images_features_df(VARIATION)["Alarm"]
df = (
pd.DataFrame(
[
dict(clip=clip, y_true=alarms_series[clip], **v.dict())
for clip, l in similarities.items()
for v in l
]
)
.rename(columns={"classification": "y_predict"})
.sort_values(["clip", "y_true", "y_predict", "text"])
.reset_index(drop=True)
)
unique_y_true = df["y_true"].unique()
fig = make_subplots(
rows=1,
cols=4,
column_widths=[0.3, 0.2, 0.3, 0.2],
shared_yaxes=True,
y_title="similarity",
subplot_titles=[
f"y_true={y_true}" for y_true in unique_y_true for _ in range(2)
],
)
# group by
# 1. y_true (facet)
# 2. y_predict / text class (color)
for i, y_true in enumerate(unique_y_true):
facet_df = df[df["y_true"] == y_true]
for y_predict, class_color in zip(
sorted(facet_df["y_predict"].unique()), ["CornflowerBlue", "Tomato"]
):
facet_color_df = facet_df[facet_df["y_predict"] == y_predict]
violin_side = "positive" if y_predict else "negative"
fig.add_scatter(
x=facet_color_df["text"],
y=facet_color_df["similarity"],
marker=dict(color=class_color, size=3),
hovertext=facet_color_df["clip"],
mode="markers",
name=f"y_predict={str(y_predict)}",
legendgroup=f"y_true={str(y_true)}",
legendgrouptitle=dict(text=f"y_true={str(y_true)}"),
row=1,
col=i * 2 + 1,
)
fig.update_layout(**{f"xaxis{i*2+1}": dict(title="text")})
fig.add_violin(
x=np.repeat(str(y_true), len(facet_color_df)),
y=facet_color_df["similarity"],
box=dict(visible=True),
scalegroup=str(y_true),
scalemode="count",
width=1,
meanline=dict(visible=True),
side=violin_side,
marker=dict(color=class_color),
showlegend=False,
row=1,
col=i * 2 + 2,
)
fig.update_layout(height=900, violingap=0, violinmode="overlay")
fig.show()
groupby_classification = df.groupby(["clip", "y_predict"])["similarity"]
weighted_similarity = groupby_classification.sum() / groupby_classification.count()
ratio = weighted_similarity.groupby(level="clip").aggregate(
lambda s: s.loc[:, True] / s.loc[:, False]
)
ratio_df = ratio.to_frame("ratio")
ratio_df["y_true"] = alarms_series.loc[ratio_df.index]
fig = px.scatter(
ratio_df.sort_values(["y_true", "ratio"]),
y="ratio",
color="y_true",
render_mode="line",
marginal_y="violin",
height=900,
)
fig.show()
fpr, tpr, thresholds = roc_curve(ratio_df["y_true"], ratio_df["ratio"])
auc_score = roc_auc_score(ratio_df["y_true"], ratio_df["ratio"])
roc_df = pd.DataFrame(
{
"False Positive Rate": fpr,
"True Positive Rate": tpr,
},
columns=pd.Index(["False Positive Rate", "True Positive Rate"], name="Rate"),
index=pd.Index(thresholds, name="Thresholds"),
)
fig = px.line(
roc_df,
x="False Positive Rate",
y="True Positive Rate",
title=f"{VARIATION} - AUC: {auc_score:.5f}",
color_discrete_sequence=["orange"],
range_x=[0, 1],
range_y=[0, 1],
width=600,
height=450,
).add_shape(type="line", line=dict(dash="dash"), x0=0, x1=1, y0=0, y1=1)
fig.show()
TEXTS_TRUE = [
"human",
"a video of a human approaching a fence",
"human going through a fence",
"human cutting a fence",
]
TEXTS_FALSE = [
"birds flying",
"plastic bag laying on the floor",
"rabbits",
"insects",
"foxes",
]
# assert len(TEXTS_TRUE) == len(TEXTS_FALSE)
TEXTS = TEXTS_TRUE + TEXTS_FALSE
TEXT_CLASSIFICATIONS = [True] * len(TEXTS_TRUE) + [False] * len(TEXTS_FALSE)
infer(TEXTS, TEXT_CLASSIFICATIONS, VARIATION_NAMES[1])
90&&i.log("Long binary search..."),h-1},e.sorterAsc=function(t,e){return t-e},e.sorterDes=function(t,e){return e-t},e.distinctVals=function(t){var r,n=t.slice();for(n.sort(e.sorterAsc),r=n.length-1;r>-1&&n[r]===o;r--);for(var i,a=n[r]-n[0]||1,s=a/(r||1)/1e4,l=[],u=0;u<=r;u++){var c=n[u],f=c-i;void 0===i?(l.push(c),i=c):f>s&&(a=Math.min(a,f),l.push(c),i=c)}return{vals:l,minDiff:a}},e.roundUp=function(t,e,r){for(var n,i=0,a=e.length-1,o=0,s=r?0:1,l=r?1:0,u=r?Math.ceil:Math.floor;i0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},e.findIndexOfMin=function(t,e){e=e||a;for(var r,n=1/0,i=0;i<t.length;i++){var o=e(t[i]);o<n&&(n=o,r=i)}return r}},6964:function(t){"use strict";t.exports=function(t,e){(t.attr("class")||"").split(" ").forEach((function(e){0===e.indexOf("cursor-")&&t.classed(e,!1)})),e&&t.classed("cursor-"+e,!0)}},58617:function(t,e,r){"use strict";var n=r(7901),i=function(){};t.exports=function(t){for(var e in t)"function"==typeof t[e]&&(t[e]=i);t.destroy=function(){t.container.parentNode.removeChild(t.container)};var r=document.createElement("div");r.className="no-webgl",r.style.cursor="pointer",r.style.fontSize="24px",r.style.color=n.defaults[0],r.style.position="absolute",r.style.left=r.style.top="0px",r.style.width=r.style.height="100%",r.style["background-color"]=n.lightLine,r.style["z-index"]=30;var a=document.createElement("p");return a.textContent="WebGL is not supported by your browser - visit https://get.webgl.org for more info",a.style.position="relative",a.style.top="50%",a.style.left="50%",a.style.height="30%",a.style.width="50%",a.style.margin="-15% 0 0 -25%",r.appendChild(a),t.container.appendChild(r),t.container.style.background="#FFFFFF",t.container.onclick=function(){window.open("https://get.webgl.org")},!1}},78607:function(t){"use strict";t.exports=function(t){return Object.keys(t).sort()}},80038:function(t,e,r){"use strict";var n=r(92770),i=r(73627).isArrayOrTypedArray;e.aggNums=function(t,r,a,o){var s,l;if((!o||o>a.length)&&(o=a.length),n(r)||(r=!1),i(a[0])){for(l=new Array(o),s=0;s
/i;e.BR_TAG_ALL=/
/gi;var _=/(^|[\s"'])style\s*=\s*("([^"]*);?"|'([^']*);?')/i,w=/(^|[\s"'])href\s*=\s*("([^"]*)"|'([^']*)')/i,T=/(^|[\s"'])target\s*=\s*("([^"\s]*)"|'([^'\s]*)')/i,k=/(^|[\s"'])popup\s*=\s*("([\w=,]*)"|'([\w=,]*)')/i;function A(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&L(n)}var M=/(^|;)\s*color:/;e.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:["br"],i="...".length,a=t.split(m),o=[],s="",l=0,u=0;u
"+l;e.text=u}(t,o,r,u):"log"===c?function(t,e,r,n,a){var o=t.dtick,l=e.x,u=t.tickformat,c="string"==typeof o&&o.charAt(0);if("never"===a&&(a=""),n&&"L"!==c&&(o="L3",c="L"),u||"L"===c)e.text=xt(Math.pow(10,l),t,a,n);else if(i(o)||"D"===c&&s.mod(l+.01,1)<.1){var f=Math.round(l),h=Math.abs(f),p=t.exponentformat;"power"===p||yt(p)&&mt(f)?(e.text=0===f?1:1===f?"10":"10"+(f>1?"":P)+h+"_12.mov","SZTEA204a_00_52_12.mov","SZTEA204a_00_54_48.mov","SZTEA204a_00_54_48.mov","SZTEA204a_00_54_48.mov","SZTEA204a_00_54_48.mov","SZTEA204a_00_57_37.mov","SZTEA204a_00_57_37.mov","SZTEA204a_00_57_37.mov","SZTEA204a_00_57_37.mov","SZTEA204a_01_00_41.mov","SZTEA204a_01_00_41.mov","SZTEA204a_01_00_41.mov","SZTEA204a_01_00_41.mov","SZTEA204a_01_03_22.mov","SZTEA204a_01_03_22.mov","SZTEA204a_01_03_22.mov","SZTEA204a_01_03_22.mov","SZTEA204a_01_06_08.mov","SZTEA204a_01_06_08.mov","SZTEA204a_01_06_08.mov","SZTEA204a_01_06_08.mov","SZTEA204a_01_09_28.mov","SZTEA204a_01_09_28.mov","SZTEA204a_01_09_28.mov","SZTEA204a_01_09_28.mov","SZTEA204a_01_13_00.mov","SZTEA204a_01_13_00.mov","SZTEA204a_01_13_00.mov","SZTEA204a_01_13_00.mov","SZTEA204a_01_16_10.mov","SZTEA204a_01_16_10.mov","SZTEA204a_01_16_10.mov","SZTEA204a_01_16_10.mov","SZTEA204a_01_19_21.mov","SZTEA204a_01_19_21.mov","SZTEA204a_01_19_21.mov","SZTEA204a_01_19_21.mov","SZTEA204a_01_21_56.mov","SZTEA204a_01_21_56.mov","SZTEA204a_01_21_56.mov","SZTEA204a_01_21_56.mov","SZTEA204a_01_24_45.mov","SZTEA204a_01_24_45.mov","SZTEA204a_01_24_45.mov","SZTEA204a_01_24_45.mov","SZTEA204a_01_27_06.mov","SZTEA204a_01_27_06.mov","SZTEA204a_01_27_06.mov","SZTEA204a_01_27_06.mov","SZTEA204a_01_29_45.mov","SZTEA204a_01_29_45.mov","SZTEA204a_01_29_45.mov","SZTEA204a_01_29_45.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov"],"legendgroup":"y_true=True","legendgrouptitle":{"text":"y_true=True"},"marker":{"color":"Tomato","size":3},"mode":"markers","name":"y_predict=True","x":["a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"scatter","xaxis":"x3","yaxis":"y3"},{"box":{"visible":true},"marker":{"color":"Tomato"},"meanline":{"visible":true},"scalegroup":"True","scalemode":"count","showlegend":false,"side":"positive","width":1,"x":["True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"violin","xaxis":"x4","yaxis":"y4"}], {"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"]]}],"heatmapgl":[{"type":"heatmapgl","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":""}}}],"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"}}},"xaxis":{"anchor":"y","domain":[0.0,0.255],"title":{"text":"text"}},"yaxis":{"anchor":"x","domain":[0.0,1.0]},"xaxis2":{"anchor":"y2","domain":[0.305,0.475]},"yaxis2":{"anchor":"x2","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis3":{"anchor":"y3","domain":[0.525,0.78],"title":{"text":"text"}},"yaxis3":{"anchor":"x3","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis4":{"anchor":"y4","domain":[0.8300000000000001,1.0]},"yaxis4":{"anchor":"x4","domain":[0.0,1.0],"matches":"y","showticklabels":false},"annotations":[{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.1275,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.39,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.6525000000000001,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.915,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"similarity","textangle":-90,"x":0,"xanchor":"right","xref":"paper","xshift":-40,"y":0.5,"yanchor":"middle","yref":"paper"}],"height":900,"violingap":0,"violinmode":"overlay"}, {"responsive": true} ).then(function(){
var gd = document.getElementById('f38646a8-70b8-44f4-86c0-8081711656a1');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); ",e.fontSize*=1.25):("e"===p||"E"===p)&&h>2?e.text="1"+p+(f>0?"+":P)+h:(e.text=xt(Math.pow(10,l),t,"","fakehover"),"D1"===o&&"y"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if("D"!==c)throw"unrecognized dtick "+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if("D1"===t.dtick){var d=String(e.text).charAt(0);"0"!==d&&"1"!==d||("y"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,u,v):"category"===c?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=""),e.text=String(r)}(t,o):"multicategory"===c?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?"":String(i[1]),o=void 0===i[0]?"":String(i[0]);r?e.text=o+" - "+a:(e.text=a,e.text2=o)}(t,o,r):It(t)?function(t,e,r,n,i){if("radians"!==t.thetaunit||r)e.text=xt(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text="0";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=xt(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text="π":e.text=o[0]+"π":e.text=["",o[0],"01_29_45.mov","SZTEA204a_01_29_45.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov"],"legendgroup":"y_true=True","legendgrouptitle":{"text":"y_true=True"},"marker":{"color":"Tomato","size":3},"mode":"markers","name":"y_predict=True","x":["a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"scatter","xaxis":"x3","yaxis":"y3"},{"box":{"visible":true},"marker":{"color":"Tomato"},"meanline":{"visible":true},"scalegroup":"True","scalemode":"count","showlegend":false,"side":"positive","width":1,"x":["True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"violin","xaxis":"x4","yaxis":"y4"}], {"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"]]}],"heatmapgl":[{"type":"heatmapgl","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":""}}}],"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"}}},"xaxis":{"anchor":"y","domain":[0.0,0.255],"title":{"text":"text"}},"yaxis":{"anchor":"x","domain":[0.0,1.0]},"xaxis2":{"anchor":"y2","domain":[0.305,0.475]},"yaxis2":{"anchor":"x2","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis3":{"anchor":"y3","domain":[0.525,0.78],"title":{"text":"text"}},"yaxis3":{"anchor":"x3","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis4":{"anchor":"y4","domain":[0.8300000000000001,1.0]},"yaxis4":{"anchor":"x4","domain":[0.0,1.0],"matches":"y","showticklabels":false},"annotations":[{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.1275,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.39,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.6525000000000001,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.915,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"similarity","textangle":-90,"x":0,"xanchor":"right","xref":"paper","xshift":-40,"y":0.5,"yanchor":"middle","yref":"paper"}],"height":900,"violingap":0,"violinmode":"overlay"}, {"responsive": true} ).then(function(){
var gd = document.getElementById('f38646a8-70b8-44f4-86c0-8081711656a1');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); ","⁄","",o[1],"1_29_45.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTEA204a_01_31_46.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a01_00_08_50.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a02_00_01_38.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a03_00_01_25.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a04_00_00_18.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a05_00_00_07.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a06_00_00_03.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a07_00_00_19.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a08_00_00_04.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a09_00_00_01.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a10_00_00_15.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a11_00_00_16.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a12_00_00_21.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a13_00_00_25.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a14_00_00_09.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a15_00_00_15.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a16_00_00_20.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a17_00_00_10.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a18_00_00_12.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a19_00_00_06.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a20_00_00_03.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a21_00_00_06.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a22_00_01_11.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a23_00_01_10.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a24_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a25_00_01_14.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a26_00_01_18.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a27_00_00_34.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a28_00_00_58.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a29_00_01_13.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a30_00_00_54.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA101a31_00_01_17.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a01_00_05_36.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a02_00_01_50.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a03_00_00_11.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a04_00_00_09.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a05_00_00_20.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a06_00_00_54.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a07_00_00_02.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a08_00_00_17.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a09_00_00_09.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102a10_00_00_12.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b01_00_04_58.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b02_00_00_17.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b03_00_00_14.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b04_00_00_22.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b05_00_00_06.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b06_00_00_02.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b07_00_00_49.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b08_00_00_07.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b09_00_00_06.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b10_00_00_09.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b11_00_00_12.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b12_00_00_11.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA102b13_00_00_20.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a01_00_05_19.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a02_00_00_07.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a04_00_00_03.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a05_00_00_07.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a06_00_00_04.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a07_00_00_11.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a08_00_00_04.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a09_00_00_15.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a10_00_00_03.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a11_00_00_14.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a12_00_00_07.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a13_00_00_05.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a14_00_00_02.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a15_00_00_06.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a16_00_00_07.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103a17_00_00_09.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b01_00_06_13.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b02_00_00_12.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b03_00_00_11.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b04_00_00_15.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b05_00_02_01.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b06_00_00_13.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b07_00_00_09.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b08_00_00_05.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b09_00_00_09.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b10_00_00_19.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b11_00_00_22.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b12_00_00_10.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b13_00_00_16.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b14_00_00_15.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b15_00_00_09.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b16_00_00_06.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA103b17_00_00_12.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a01_00_05_14.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a02_00_00_17.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a03_00_00_04.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a04_00_00_07.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a06_00_00_46.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a07_00_00_10.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a08_00_00_18.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a09_00_00_29.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a10_00_00_11.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a11_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a12_00_00_08.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a13_00_00_28.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a14_00_00_13.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104a15_00_00_25.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b01_00_09_03.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b02_00_01_10.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b03_00_00_39.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b04_00_00_47.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b05_00_00_36.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b06_00_00_10.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b07_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b08_00_00_19.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b09_00_00_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA104b10_00_01_22.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a01_00_08_50.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a02_00_01_38.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a03_00_01_17.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a04_00_00_16.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a05_00_00_09.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a06_00_00_03.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a07_00_00_24.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a08_00_00_06.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a09_00_00_01.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a10_00_00_15.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a11_00_00_14.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a12_00_00_22.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a13_00_00_26.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a14_00_00_14.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a15_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a16_00_00_15.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a17_00_00_10.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a18_00_00_15.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a19_00_00_06.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a20_00_00_02.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a21_00_00_06.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a22_00_01_10.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a23_00_01_08.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a24_00_01_20.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a25_00_01_14.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a26_00_01_18.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a27_00_00_31.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a28_00_00_56.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a29_00_01_13.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a30_00_00_54.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA201a31_00_01_17.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a01_00_05_36.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a02_00_01_50.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a03_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a04_00_00_09.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a05_00_00_21.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a06_00_00_54.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a07_00_00_02.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a08_00_00_17.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a09_00_00_04.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202a10_00_00_08.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b01_00_04_59.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b02_00_00_19.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b03_00_00_15.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b04_00_00_22.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b05_00_00_06.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b07_00_00_53.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b08_00_00_03.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b09_00_00_06.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b10_00_00_09.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b11_00_00_08.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b12_00_00_12.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA202b13_00_00_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a01_00_05_19.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a02_00_00_08.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a03_00_00_12.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a04_00_00_03.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a05_00_00_05.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a06_00_00_03.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a07_00_00_24.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a08_00_00_05.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a09_00_00_16.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a10_00_00_02.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a11_00_00_10.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a12_00_00_06.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a13_00_00_02.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a14_00_00_06.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a15_00_00_09.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a16_00_00_06.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203a17_00_00_10.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b01_00_06_13.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b02_00_00_12.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b03_00_00_26.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b04_00_00_15.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b05_00_02_01.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b06_00_00_13.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b07_00_00_09.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b08_00_00_05.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b09_00_00_08.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b10_00_00_17.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b11_00_00_13.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b12_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b13_00_00_16.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b14_00_00_18.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b15_00_00_09.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b16_00_00_06.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA203b17_00_00_13.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a01_00_05_06.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a02_00_00_17.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a03_00_00_03.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a04_00_00_07.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a05_00_00_10.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a06_00_00_48.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a07_00_00_11.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a08_00_00_19.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a09_00_00_37.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a10_00_00_10.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a11_00_00_06.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a12_00_00_07.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a13_00_00_27.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a14_00_00_09.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov","SZTRA204a15_00_00_24.mov"],"legendgroup":"y_true=True","legendgrouptitle":{"text":"y_true=True"},"marker":{"color":"Tomato","size":3},"mode":"markers","name":"y_predict=True","x":["a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through","a video of a human approaching","human","human cutting","human going through"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"scatter","xaxis":"x3","yaxis":"y3"},{"box":{"visible":true},"marker":{"color":"Tomato"},"meanline":{"visible":true},"scalegroup":"True","scalemode":"count","showlegend":false,"side":"positive","width":1,"x":["True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True","True"],"y":[0.18172529339790344,0.19166336953639984,0.2001432627439499,0.20615431666374207,0.1910359114408493,0.1986345499753952,0.16902899742126465,0.21303650736808777,0.20817314088344574,0.1905210018157959,0.1647142916917801,0.2083093523979187,0.20703817903995514,0.20260252058506012,0.1650027334690094,0.21886852383613586,0.18114638328552246,0.1917736679315567,0.17155860364437103,0.20200878381729126,0.1984594762325287,0.20154975354671478,0.17006990313529968,0.21553751826286316,0.19349601864814758,0.20037396252155304,0.18032661080360413,0.21273525059223175,0.19120945036411285,0.20013956725597382,0.1890103965997696,0.21271838247776031,0.19308152794837952,0.19614458084106445,0.18549542129039764,0.2062656283378601,0.17380669713020325,0.17726513743400574,0.1830810308456421,0.1815188229084015,0.18700507283210754,0.19818243384361267,0.18655136227607727,0.19832447171211243,0.18584910035133362,0.18848057091236115,0.18293644487857819,0.19346864521503448,0.1883879005908966,0.19926562905311584,0.17685820162296295,0.20357802510261536,0.19246993958950043,0.20202834904193878,0.18388907611370087,0.20363155007362366,0.1867929846048355,0.20379436016082764,0.2085392326116562,0.2057775855064392,0.18955768644809723,0.19737732410430908,0.17294049263000488,0.20239537954330444,0.1636207401752472,0.17598176002502441,0.20432700216770172,0.1743929088115692,0.1706709861755371,0.1888977438211441,0.19154894351959229,0.1885683536529541,0.17940855026245117,0.19236533343791962,0.19458158314228058,0.19150860607624054,0.18123501539230347,0.19298960268497467,0.1737791895866394,0.19523420929908752,0.19405142962932587,0.20487113296985626,0.20064206421375275,0.20569314062595367,0.203649640083313,0.20525601506233215,0.17529740929603577,0.21525666117668152,0.20881083607673645,0.2035975605249405,0.1676723212003708,0.22541211545467377,0.2020443230867386,0.20879027247428894,0.17649175226688385,0.21729320287704468,0.22195348143577576,0.19577458500862122,0.1838846653699875,0.21968184411525726,0.18292544782161713,0.19104696810245514,0.19684548676013947,0.19821308553218842,0.19292543828487396,0.19247257709503174,0.19473619759082794,0.20043878257274628,0.18403881788253784,0.18711133301258087,0.17511539161205292,0.1957443505525589,0.18934166431427002,0.19196979701519012,0.19027787446975708,0.20163385570049286,0.1885804533958435,0.19620279967784882,0.20974519848823547,0.20384763181209564,0.18802064657211304,0.18138621747493744,0.17654956877231598,0.19588914513587952,0.19091899693012238,0.1914709359407425,0.21389347314834595,0.19729509949684143,0.1756681650876999,0.17891983687877655,0.2206222116947174,0.17952397465705872,0.1871878206729889,0.1833471655845642,0.17445115745067596,0.1899326741695404,0.18779969215393066,0.20051981508731842,0.19918422400951385,0.1991487294435501,0.18711870908737183,0.19219627976417542,0.1903831511735916,0.19744521379470825,0.19189974665641785,0.18745191395282745,0.17112715542316437,0.2017856389284134,0.1932150423526764,0.19843144714832306,0.21768222749233246,0.19334228336811066,0.20099401473999023,0.20196533203125,0.1986655443906784,0.20453980565071106,0.19804738461971283,0.1939247101545334,0.19263412058353424,0.1931491494178772,0.1909649521112442,0.19944512844085693,0.19741246104240417,0.19531816244125366,0.17723806202411652,0.18436014652252197,0.2183758020401001,0.18653814494609833,0.1868007332086563,0.2009037584066391,0.2051580250263214,0.20403677225112915,0.18148915469646454,0.19117344915866852,0.19398139417171478,0.18483711779117584,0.17776265740394592,0.1857692301273346,0.1847614347934723,0.1801716834306717,0.2031400203704834,0.20002341270446777,0.17988550662994385,0.19811351597309113,0.19371601939201355,0.19255264103412628,0.1862322837114334,0.19592438638210297,0.20286442339420319,0.19982412457466125,0.19586174190044403,0.20553430914878845,0.19562087953090668,0.20273785293102264,0.1937122344970703,0.20351845026016235,0.18305571377277374,0.19004960358142853,0.2170625925064087,0.1892920285463333,0.1931636780500412,0.19608503580093384,0.1935293823480606,0.20205824077129364,0.19851325452327728,0.19481027126312256,0.18553438782691956,0.19924846291542053,0.18555977940559387,0.18423517048358917,0.18730691075325012,0.1892346441745758,0.1987825632095337,0.20332863926887512,0.19990718364715576,0.20542387664318085,0.18392689526081085,0.1752033531665802,0.1952541470527649,0.17752738296985626,0.20480875670909882,0.2102450728416443,0.1885383129119873,0.21103036403656006,0.20404401421546936,0.19938348233699799,0.186459019780159,0.20865406095981598,0.20830391347408295,0.1899278163909912,0.1726609319448471,0.20512109994888306,0.20806744694709778,0.19802618026733398,0.18671447038650513,0.20965653657913208,0.19061484932899475,0.19551366567611694,0.18893004953861237,0.19496001303195953,0.18337993323802948,0.193965882062912,0.19132916629314423,0.1939748227596283,0.18502290546894073,0.1820499151945114,0.18097051978111267,0.18374113738536835,0.19059431552886963,0.18483705818653107,0.17881684005260468,0.18672969937324524,0.18626804649829865,0.1989593356847763,0.2009699046611786,0.1975526660680771,0.20653913915157318,0.20258234441280365,0.19415080547332764,0.20706786215305328,0.18743841350078583,0.1925419420003891,0.20162644982337952,0.19819389283657074,0.20626546442508698,0.19885829091072083,0.18510374426841736,0.207423597574234,0.19479896128177643,0.19497400522232056,0.17929859459400177,0.1968376487493515,0.18301722407341003,0.17807453870773315,0.1742410510778427,0.18243132531642914,0.1855209320783615,0.19425912201404572,0.2058579921722412,0.19870489835739136,0.18694408237934113,0.18664255738258362,0.19144244492053986,0.1945439875125885,0.1878935992717743,0.18130524456501007,0.18320529162883759,0.1867525726556778,0.23073703050613403,0.20318828523159027,0.17402882874011993,0.23342420160770416,0.20453068614006042,0.20140713453292847,0.15548470616340637,0.22490663826465607,0.21456080675125122,0.1942882388830185,0.16035416722297668,0.21984414756298065,0.21559906005859375,0.19428659975528717,0.1450897604227066,0.22197575867176056,0.19457794725894928,0.19267208874225616,0.15183235704898834,0.20704048871994019,0.21891461312770844,0.2137124091386795,0.1703076809644699,0.23327025771141052,0.22459439933300018,0.1940995752811432,0.15937530994415283,0.2219342738389969,0.2340952754020691,0.2111891657114029,0.1745709925889969,0.23386605083942413,0.21353131532669067,0.212568998336792,0.16827651858329773,0.23127004504203796,0.21711072325706482,0.19638104736804962,0.17198868095874786,0.21809275448322296,0.22764430940151215,0.20068664848804474,0.16815553605556488,0.22929200530052185,0.23243747651576996,0.22256779670715332,0.18456096947193146,0.24130208790302277,0.20194652676582336,0.1998153179883957,0.18674331903457642,0.2204161286354065,0.22480057179927826,0.22084259986877441,0.2008795589208603,0.2391723245382309,0.206814706325531,0.2023082822561264,0.20989522337913513,0.2140837013721466,0.22286999225616455,0.19583383202552795,0.16267871856689453,0.22454313933849335,0.2188607156276703,0.20689848065376282,0.16306611895561218,0.23133191466331482,0.2109428346157074,0.17879171669483185,0.15178053081035614,0.20717769861221313,0.22255221009254456,0.1959954798221588,0.16431015729904175,0.22060441970825195,0.2263403981924057,0.1907096654176712,0.1647423952817917,0.22142495214939117,0.2156880646944046,0.20373377203941345,0.15552496910095215,0.219135582447052,0.224989116191864,0.19693049788475037,0.1657676100730896,0.225248783826828,0.22212378680706024,0.1983119547367096,0.1697894036769867,0.2246486097574234,0.22084204852581024,0.20978303253650665,0.17099542915821075,0.2264423817396164,0.23292864859104156,0.20771999657154083,0.17305953800678253,0.23344606161117554,0.22143934667110443,0.20103545486927032,0.17574024200439453,0.2253183126449585,0.21771442890167236,0.21382169425487518,0.16936877369880676,0.2274397313594818,0.21365173161029816,0.20755919814109802,0.1512225866317749,0.22117148339748383,0.2179034948348999,0.20268431305885315,0.16133233904838562,0.22302404046058655,0.221784308552742,0.2060481458902359,0.1659344881772995,0.23247914016246796,0.22308968007564545,0.19716808199882507,0.18486829102039337,0.22172044217586517,0.19647857546806335,0.20062091946601868,0.18609201908111572,0.21243298053741455,0.2032977193593979,0.1983058899641037,0.18465709686279297,0.2125212848186493,0.18751689791679382,0.19756291806697845,0.20065529644489288,0.20748750865459442,0.18947984278202057,0.20464278757572174,0.18740250170230865,0.21158529818058014,0.18167541921138763,0.19280727207660675,0.20243790745735168,0.20162327587604523,0.18448717892169952,0.1765364408493042,0.16505426168441772,0.19318176805973053,0.18259193003177643,0.199656680226326,0.18153509497642517,0.20203477144241333,0.19658225774765015,0.20238344371318817,0.18458868563175201,0.21292644739151,0.20600613951683044,0.20662569999694824,0.1759270280599594,0.21926838159561157,0.2008836418390274,0.1929410696029663,0.1827516406774521,0.1918398141860962,0.18515311181545258,0.16744661331176758,0.14994172751903534,0.18270821869373322,0.1766948252916336,0.1699702888727188,0.17796307802200317,0.18016280233860016,0.16779173910617828,0.17335620522499084,0.17156445980072021,0.188140407204628,0.1854122430086136,0.17005474865436554,0.15801772475242615,0.1835373193025589,0.18674278259277344,0.16766497492790222,0.15969276428222656,0.1832888275384903,0.17002327740192413,0.16707706451416016,0.1726658195257187,0.16980475187301636,0.17345337569713593,0.16793380677700043,0.17101848125457764,0.17063266038894653,0.17171727120876312,0.164876326918602,0.17549821734428406,0.16724367439746857,0.1889665126800537,0.17787352204322815,0.1705995500087738,0.18018464744091034,0.17181669175624847,0.1758449673652649,0.1885984241962433,0.17530891299247742,0.1934388130903244,0.18548999726772308,0.18826250731945038,0.196786567568779,0.20692718029022217,0.19661058485507965,0.1940019279718399,0.20511451363563538,0.19544611871242523,0.1925857812166214,0.18367218971252441,0.1969102919101715,0.19993039965629578,0.1824009269475937,0.1892605572938919,0.19716127216815948,0.20915517210960388,0.18618248403072357,0.1870918720960617,0.205758735537529,0.18333475291728973,0.17027397453784943,0.18171358108520508,0.18418864905834198,0.2137000560760498,0.18664076924324036,0.19483500719070435,0.20260512828826904,0.21086463332176208,0.1849893033504486,0.20264975726604462,0.19740518927574158,0.20323123037815094,0.1766977310180664,0.19413802027702332,0.1922835260629654,0.2017454206943512,0.18247854709625244,0.19792960584163666,0.19235116243362427,0.19276192784309387,0.17621850967407227,0.19906197488307953,0.18934565782546997,0.2024846076965332,0.1816757470369339,0.18229372799396515,0.20218005776405334,0.17427600920200348,0.16378377377986908,0.18157872557640076,0.1876997947692871,0.1991390883922577,0.16686978936195374,0.15606573224067688,0.19894462823867798,0.18528884649276733,0.15411368012428284,0.1625261902809143,0.18212451040744781,0.17919912934303284,0.18086853623390198,0.19285622239112854,0.18761064112186432,0.1833682656288147,0.18018506467342377,0.1751037836074829,0.18640632927417755,0.18492020666599274,0.1824444681406021,0.20852920413017273,0.1930282860994339,0.17265494167804718,0.16729478538036346,0.21542988717556,0.17286178469657898,0.18917721509933472,0.18190500140190125,0.16403591632843018,0.19335772097110748,0.17877091467380524,0.18058788776397705,0.17344370484352112,0.19079001247882843,0.18333087861537933,0.18108989298343658,0.17125706374645233,0.19287437200546265,0.18350671231746674,0.17659078538417816,0.167893648147583,0.18633057177066803,0.19537527859210968,0.18865782022476196,0.19476181268692017,0.19771726429462433,0.1799076497554779,0.1787678748369217,0.17013821005821228,0.18868087232112885,0.16876652836799622,0.1696203500032425,0.19902344048023224,0.17576874792575836,0.16909269988536835,0.17338252067565918,0.1861269474029541,0.176702082157135,0.1787049025297165,0.17026686668395996,0.18068987131118774,0.17965462803840637,0.20325718820095062,0.1852942705154419,0.18840430676937103,0.20239447057247162,0.1951798051595688,0.18393191695213318,0.21166114509105682,0.19849911332130432,0.19378434121608734,0.18132802844047546,0.1922745257616043,0.20068304240703583,0.194047749042511,0.18191708624362946,0.20972922444343567,0.1898452490568161,0.19578269124031067,0.18408696353435516,0.20115341246128082,0.1949562132358551,0.19127804040908813,0.1791587918996811,0.1945338249206543,0.19233478605747223,0.19357219338417053,0.1803295612335205,0.1980280578136444,0.19436556100845337,0.19155356287956238,0.17676885426044464,0.19288001954555511,0.19005808234214783,0.20288555324077606,0.19679847359657288,0.20794998109340668,0.20934943854808807,0.18491911888122559,0.17103974521160126,0.1830701380968094,0.18661127984523773,0.19926771521568298,0.1823899745941162,0.18406017124652863,0.20153485238552094,0.18997691571712494,0.18292848765850067,0.18741923570632935,0.19367632269859314,0.17751726508140564,0.1791234016418457,0.1897038221359253,0.1888238936662674,0.18350942432880402,0.1826159805059433,0.1659984588623047,0.19249649345874786,0.18839101493358612,0.18939916789531708,0.19525958597660065,0.20503662526607513,0.18391577899456024,0.16841168701648712,0.18133996427059174,0.18315957486629486,0.1830173134803772,0.1797812581062317,0.1860145479440689,0.18691714107990265,0.18657055497169495,0.16233113408088684,0.16004590690135956,0.18349884450435638,0.18167473375797272,0.1646425724029541,0.1655181497335434,0.1780674159526825,0.17267146706581116,0.16630873084068298,0.1780039221048355,0.1783597767353058,0.1865101307630539,0.16647671163082123,0.1606687307357788,0.1835271418094635,0.204720139503479,0.1844932585954666,0.1994706243276596,0.19837862253189087,0.2015896737575531,0.17760689556598663,0.19096559286117554,0.19461911916732788,0.19191893935203552,0.1852550357580185,0.20865684747695923,0.1908734142780304,0.20110087096691132,0.1981205940246582,0.20370541512966156,0.20622314512729645,0.20295315980911255,0.18399560451507568,0.20158793032169342,0.19793830811977386,0.20710808038711548,0.1764678955078125,0.16964629292488098,0.20009353756904602,0.20731627941131592,0.18037115037441254,0.192365825176239,0.2005884200334549,0.2032047063112259,0.17743389308452606,0.18303608894348145,0.20133227109909058,0.19131022691726685,0.17360049486160278,0.16573183238506317,0.19407247006893158,0.18649719655513763,0.19120433926582336,0.21092651784420013,0.19772571325302124,0.1967589557170868,0.1822626143693924,0.19426950812339783,0.1937410682439804,0.19017601013183594,0.1890415996313095,0.19601605832576752,0.1937473714351654,0.19540654122829437,0.184112086892128,0.18695536255836487,0.1887514889240265,0.18405002355575562,0.1698940098285675,0.1486949920654297,0.19322243332862854,0.17871949076652527,0.1610114723443985,0.16094529628753662,0.18143725395202637,0.185163214802742,0.1774819791316986,0.15642428398132324,0.1982325315475464,0.189775288105011,0.17912828922271729,0.16131246089935303,0.20022189617156982,0.18835857510566711,0.17271728813648224,0.15778997540473938,0.19628699123859406,0.18110288679599762,0.1601734757423401,0.14623689651489258,0.18745605647563934,0.19019576907157898,0.18091559410095215,0.15710070729255676,0.19956552982330322,0.18503376841545105,0.16968990862369537,0.1428385078907013,0.19298966228961945,0.16983985900878906,0.16512919962406158,0.16244930028915405,0.1798691600561142,0.1852085441350937,0.1668391227722168,0.14884410798549652,0.1895768642425537,0.18282654881477356,0.1740608960390091,0.1533116102218628,0.19526736438274384,0.1917952448129654,0.16581843793392181,0.1512332409620285,0.19329993426799774,0.19849419593811035,0.1665329784154892,0.15891599655151367,0.1966303586959839,0.19773820042610168,0.1716768443584442,0.1608027070760727,0.1977563500404358,0.19630251824855804,0.1674073338508606,0.15704086422920227,0.19713178277015686,0.19210462272167206,0.17918246984481812,0.17540037631988525,0.20037813484668732,0.19468751549720764,0.17164115607738495,0.16056779026985168,0.19730831682682037,0.19189880788326263,0.18020261824131012,0.18333321809768677,0.20325300097465515,0.19910909235477448,0.17692244052886963,0.1730939745903015,0.2057696133852005,0.19172170758247375,0.17347444593906403,0.17187854647636414,0.19913706183433533,0.18711355328559875,0.16546271741390228,0.14690017700195312,0.1914282590150833,0.19160227477550507,0.17321717739105225,0.16179628670215607,0.19982464611530304,0.1899176836013794,0.17576000094413757,0.16286049783229828,0.20080694556236267,0.19300958514213562,0.17130593955516815,0.1650204062461853,0.1960688680410385,0.20161522924900055,0.17772287130355835,0.1570081114768982,0.2034502923488617,0.18415503203868866,0.1699001044034958,0.153626948595047,0.19761960208415985,0.18584595620632172,0.1668921560049057,0.14086678624153137,0.19283480942249298,0.1875040978193283,0.1629435271024704,0.1420973241329193,0.1928473860025406,0.18026116490364075,0.1631915271282196,0.14806750416755676,0.1844031810760498,0.1895793378353119,0.17809677124023438,0.16704247891902924,0.19790685176849365,0.21060091257095337,0.17654630541801453,0.15534605085849762,0.20274163782596588,0.2231394201517105,0.21082626283168793,0.16566970944404602,0.23546631634235382,0.21343554556369781,0.2091052234172821,0.17282278835773468,0.22881829738616943,0.20534341037273407,0.20467086136341095,0.17869526147842407,0.2145109623670578,0.20804975926876068,0.20240485668182373,0.15850457549095154,0.21841539442539215,0.20652684569358826,0.18521250784397125,0.14350537955760956,0.20804283022880554,0.19810530543327332,0.19655197858810425,0.1583654284477234,0.21196995675563812,0.20721186697483063,0.19190777838230133,0.15639862418174744,0.20806999504566193,0.20279155671596527,0.1879427433013916,0.14936579763889313,0.2048059105873108,0.2136719971895218,0.19458624720573425,0.15840356051921844,0.21651969850063324,0.22202353179454803,0.21888674795627594,0.17349576950073242,0.23608514666557312,0.22907745838165283,0.20510804653167725,0.16684867441654205,0.2344239205121994,0.2276151031255722,0.20511025190353394,0.15993037819862366,0.22969797253608704,0.21274597942829132,0.18992680311203003,0.14852406084537506,0.2167159467935562,0.22252203524112701,0.20134231448173523,0.16708889603614807,0.2247062772512436,0.20842678844928741,0.20139777660369873,0.16131559014320374,0.21880879998207092,0.20007818937301636,0.19944480061531067,0.15089885890483856,0.20992492139339447,0.20290037989616394,0.20222502946853638,0.1482096165418625,0.22124378383159637,0.21131853759288788,0.19373437762260437,0.15898260474205017,0.2147887647151947,0.2225572168827057,0.20350392162799835,0.16636738181114197,0.22477683424949646,0.2136172503232956,0.19765101373195648,0.15481267869472504,0.22151076793670654,0.21298152208328247,0.19482684135437012,0.1612372249364853,0.21714527904987335,0.19723813235759735,0.20674841105937958,0.18823562562465668,0.2146826535463333,0.20231743156909943,0.21637052297592163,0.19363157451152802,0.22703327238559723,0.23076020181179047,0.2084706425666809,0.17058922350406647,0.23604680597782135,0.21748852729797363,0.20775122940540314,0.16909213364124298,0.23547405004501343,0.21724598109722137,0.20624494552612305,0.17839708924293518,0.23363029956817627,0.20578856766223907,0.21327832341194153,0.18546365201473236,0.22761133313179016,0.20442305505275726,0.20857709646224976,0.1934071183204651,0.22302766144275665,0.22360984981060028,0.19291478395462036,0.18275468051433563,0.22169630229473114,0.22646228969097137,0.2071446031332016,0.18329644203186035,0.23832173645496368,0.23014748096466064,0.20393401384353638,0.18715530633926392,0.23210856318473816,0.22547776997089386,0.2069622129201889,0.17296159267425537,0.22769559919834137,0.2247616946697235,0.2067224681377411,0.17683954536914825,0.2262388914823532,0.18400655686855316,0.19047987461090088,0.14348800480365753,0.20267143845558167,0.18911002576351166,0.18111629784107208,0.14259546995162964,0.19964852929115295,0.22022700309753418,0.21439404785633087,0.1814456731081009,0.23175480961799622,0.21925951540470123,0.19708120822906494,0.18587598204612732,0.21105995774269104,0.19842377305030823,0.19720368087291718,0.1642138510942459,0.21998625993728638,0.20764270424842834,0.19713114202022552,0.1704753339290619,0.21370668709278107,0.18490684032440186,0.2068055421113968,0.19166210293769836,0.214041069149971,0.19273287057876587,0.18577872216701508,0.179876908659935,0.19918300211429596,0.19203366339206696,0.19120079278945923,0.1925823837518692,0.20318986475467682,0.18889813125133514,0.19270774722099304,0.1855761855840683,0.20366598665714264,0.18616411089897156,0.18726377189159393,0.20858952403068542,0.19676020741462708,0.17899273335933685,0.1861974149942398,0.20956909656524658,0.19465236365795135,0.19928890466690063,0.1958930939435959,0.190621480345726,0.20581790804862976,0.18364575505256653,0.1884044110774994,0.21924002468585968,0.1912889927625656,0.1963341385126114,0.18928062915802002,0.17301581799983978,0.20338505506515503,0.18116343021392822,0.18974722921848297,0.2050219625234604,0.19407746195793152,0.1884889006614685,0.1907077431678772,0.19300055503845215,0.20041002333164215,0.18454472720623016,0.18622587621212006,0.19588761031627655,0.19243301451206207,0.18233945965766907,0.18658754229545593,0.19592297077178955,0.1943283975124359,0.1925603151321411,0.18461769819259644,0.18630172312259674,0.2017013281583786,0.17333242297172546,0.18282055854797363,0.1846557855606079,0.18024896085262299,0.1994493454694748,0.1925477385520935,0.19127626717090607,0.19645914435386658,0.19387270510196686,0.1942589432001114,0.20288629829883575,0.19967594742774963,0.20261292159557343,0.19244900345802307,0.1884431689977646,0.19709041714668274,0.20347121357917786,0.19467896223068237,0.1930503249168396,0.20549336075782776,0.16488415002822876,0.17377229034900665,0.18846972286701202,0.17168492078781128,0.17737635970115662,0.18925485014915466,0.1889650672674179,0.186890110373497,0.19539840519428253,0.18739990890026093,0.1801515370607376,0.18634308874607086,0.19477321207523346,0.19842025637626648,0.18431095778942108,0.19839122891426086,0.18500156700611115,0.17641805112361908,0.18504537642002106,0.1773841828107834,0.171846404671669,0.17979830503463745,0.17827679216861725,0.1769331395626068,0.19600942730903625,0.18716499209403992,0.19338764250278473,0.19355511665344238,0.16462518274784088,0.1726570427417755,0.21113449335098267,0.17417654395103455,0.18923860788345337,0.18788358569145203,0.21622119843959808,0.19381897151470184,0.1855892539024353,0.18694236874580383,0.18310858309268951,0.18644289672374725,0.18779131770133972,0.18506547808647156,0.1922513097524643,0.19029073417186737,0.1760317087173462,0.17719122767448425,0.21506716310977936,0.18339288234710693,0.18295404314994812,0.1791202574968338,0.1920015960931778,0.1797979325056076,0.20051860809326172,0.19891247153282166,0.1787387579679489,0.19908013939857483,0.19978085160255432,0.1977030634880066,0.16189566254615784,0.20460116863250732,0.19861449301242828,0.1813577562570572,0.1553756147623062,0.19766975939273834,0.19959978759288788,0.19029192626476288,0.16909043490886688,0.20369724929332733,0.20508557558059692,0.20339402556419373,0.16681057214736938,0.2091054916381836,0.1890111267566681,0.19550076127052307,0.18602430820465088,0.19889062643051147,0.19491851329803467,0.19358788430690765,0.19720210134983063,0.20401640236377716,0.1948249638080597,0.1934015154838562,0.19684796035289764,0.20222178101539612,0.18146300315856934,0.19007785618305206,0.1834806650876999,0.18950502574443817,0.18579109013080597,0.19336780905723572,0.18151170015335083,0.18872728943824768,0.20567090809345245,0.2048005312681198,0.18718867003917694,0.20509694516658783,0.1842505931854248,0.1881263107061386,0.17635726928710938,0.18579992651939392,0.17213840782642365,0.18832425773143768,0.20035086572170258,0.18470849096775055,0.19982531666755676,0.18733087182044983,0.18080125749111176,0.19782501459121704,0.19448275864124298,0.1876392662525177,0.17956171929836273,0.19601799547672272,0.19313637912273407,0.18872728943824768,0.19235727190971375,0.19452126324176788,0.1840198040008545,0.17062704265117645,0.15777406096458435,0.1794770359992981,0.18453991413116455,0.19455574452877045,0.2000250518321991,0.19787155091762543,0.18742942810058594,0.19792629778385162,0.18837870657444,0.19883787631988525,0.17894649505615234,0.19352290034294128,0.20612257719039917,0.19526591897010803,0.19110828638076782,0.20694600045681,0.2012043297290802,0.20284143090248108,0.17768041789531708,0.1830674558877945,0.17494075000286102,0.1895289123058319,0.1945597231388092,0.1971289962530136,0.18246948719024658,0.2082376778125763,0.18284477293491364,0.19352881610393524,0.1917555183172226,0.19906172156333923,0.1887865960597992,0.20059357583522797,0.20765002071857452,0.20211006700992584,0.19419121742248535,0.19381171464920044,0.1789723038673401,0.2050277143716812,0.18678127229213715,0.2038649171590805,0.21258118748664856,0.20841547846794128,0.20368510484695435,0.20043084025382996,0.1689293533563614,0.21849365532398224,0.1856335699558258,0.20335379242897034,0.1931060552597046,0.20618006587028503,0.2103971689939499,0.20287804305553436,0.19758421182632446,0.2178800404071808,0.21885855495929718,0.2187637835741043,0.18760789930820465,0.23431529104709625,0.2093615084886551,0.19133880734443665,0.17398998141288757,0.21190722286701202,0.18564897775650024,0.1997874677181244,0.19034209847450256,0.20287004113197327,0.19207902252674103,0.20875824987888336,0.19414007663726807,0.21231840550899506,0.19482780992984772,0.19980420172214508,0.18719623982906342,0.20861846208572388,0.19711393117904663,0.19532500207424164,0.1868920475244522,0.20750871300697327,0.1970684975385666,0.19627851247787476,0.18427014350891113,0.20880509912967682,0.18156057596206665,0.1943671703338623,0.19914011657238007,0.2040608525276184,0.1709519475698471,0.19236673414707184,0.18329381942749023,0.19366657733917236,0.1811121106147766,0.19063754379749298,0.18566758930683136,0.2017611712217331,0.16784334182739258,0.18028229475021362,0.17858201265335083,0.18716126680374146,0.1820712685585022,0.18712419271469116,0.17641420662403107,0.18449875712394714,0.1880524903535843,0.16169725358486176,0.16236115992069244,0.18712188303470612,0.17216846346855164,0.1591065526008606,0.1663419008255005,0.17503604292869568,0.19575345516204834,0.17055651545524597,0.14830051362514496,0.1974072903394699,0.19220401346683502,0.1706487387418747,0.15124037861824036,0.19223366677761078,0.18263308703899384,0.16921579837799072,0.1581091731786728,0.18804705142974854,0.1839890331029892,0.16509227454662323,0.14845885336399078,0.18970699608325958,0.1872381865978241,0.17687705159187317,0.1538465917110443,0.19835078716278076,0.1914871782064438,0.17143265902996063,0.1572285145521164,0.19309154152870178,0.19437961280345917,0.17308072745800018,0.159646674990654,0.1962728351354599,0.17396339774131775,0.16250096261501312,0.15304380655288696,0.18350043892860413,0.1824331432580948,0.16524557769298553,0.15844175219535828,0.18511240184307098,0.18432612717151642,0.17263558506965637,0.15690207481384277,0.18861611187458038,0.1822652518749237,0.17518433928489685,0.1664605736732483,0.19506433606147766,0.18968050181865692,0.17741967737674713,0.15843892097473145,0.19596782326698303,0.20469650626182556,0.17604751884937286,0.15329430997371674,0.20051853358745575,0.19308631122112274,0.17329610884189606,0.15289512276649475,0.1936890184879303,0.19061969220638275,0.17367953062057495,0.15623944997787476,0.1940511167049408,0.18255384266376495,0.1692321002483368,0.14755530655384064,0.18835149705410004,0.17424415051937103,0.16041742265224457,0.1513744592666626,0.17353515326976776,0.17887850105762482,0.1647043079137802,0.15236394107341766,0.17831207811832428,0.1723625361919403,0.16299758851528168,0.16383828222751617,0.1756136119365692,0.186642125248909,0.16708199679851532,0.15386267006397247,0.18801957368850708,0.1948464810848236,0.17754210531711578,0.1606273204088211,0.19960597157478333,0.17983655631542206,0.16939802467823029,0.15225772559642792,0.18495482206344604,0.18257386982440948,0.1684873402118683,0.15442468225955963,0.1887723207473755,0.17985977232456207,0.1758611649274826,0.16442202031612396,0.18694810569286346,0.19514241814613342,0.17592886090278625,0.15550172328948975,0.19550347328186035,0.2002558708190918,0.1741700917482376,0.15009711682796478,0.19821380078792572,0.19329264760017395,0.1816037893295288,0.18179155886173248,0.2060081958770752,0.1776220202445984,0.1646999716758728,0.15850894153118134,0.17774882912635803,0.19602662324905396,0.17438910901546478,0.16286179423332214,0.19610974192619324,0.1876843273639679,0.18372713029384613,0.1579119861125946,0.1926855742931366,0.1859184354543686,0.17764227092266083,0.17623098194599152,0.18881647288799286,0.19227780401706696,0.17930687963962555,0.1512899547815323,0.18997153639793396,0.17909561097621918,0.17204207181930542,0.1669229418039322,0.18070566654205322,0.19318969547748566,0.17845419049263,0.17706772685050964,0.1899488866329193,0.1708916574716568,0.16798582673072815,0.17513421177864075,0.18243612349033356,0.179367333650589,0.16953593492507935,0.17654496431350708,0.17737281322479248,0.19304561614990234,0.18560343980789185,0.17861494421958923,0.19055116176605225,0.16796982288360596,0.17206594347953796,0.18334390223026276,0.16989049315452576,0.17482462525367737,0.17335528135299683,0.18801933526992798,0.17747457325458527,0.17726002633571625,0.17129793763160706,0.18693353235721588,0.18541094660758972,0.18021370470523834,0.1740153282880783,0.20476411283016205,0.18263377249240875,0.15653131902217865,0.1624085158109665,0.176437109708786,0.1694025844335556,0.17969495058059692,0.17527183890342712,0.17033751308918,0.1823006123304367,0.1684107929468155,0.16179737448692322,0.1576300710439682,0.17249661684036255,0.1708141714334488,0.17093896865844727,0.17261986434459686,0.17642556130886078,0.1758287101984024,0.18015845119953156,0.16894535720348358,0.19257214665412903,0.18171344697475433,0.182746022939682,0.18539273738861084,0.1847425252199173,0.17526021599769592,0.16794729232788086,0.1941392570734024,0.1841154545545578,0.19092804193496704,0.18204562366008759,0.16553889214992523,0.19169075787067413,0.17964184284210205,0.1797051578760147,0.16384059190750122,0.1846158802509308,0.1692802459001541,0.1647052764892578,0.173746719956398,0.17318521440029144,0.1798442155122757,0.17543278634548187,0.18104006350040436,0.1753091961145401,0.1939472258090973,0.17563244700431824,0.1877770870923996,0.19551922380924225,0.2020193487405777,0.17922480404376984,0.1792127639055252,0.19928957521915436,0.21052764356136322,0.18369996547698975,0.17840337753295898,0.2028733193874359,0.20237989723682404,0.17735305428504944,0.1764897257089615,0.1992533951997757,0.19033728539943695,0.17556846141815186,0.1896640658378601,0.1897130310535431,0.20080234110355377,0.18220648169517517,0.1895858645439148,0.1989593207836151,0.19533079862594604,0.18957562744617462,0.19350551068782806,0.1984158158302307,0.20034532248973846,0.1827443689107895,0.18157698214054108,0.20116586983203888,0.1879512369632721,0.18704847991466522,0.18469616770744324,0.19636447727680206,0.1921483278274536,0.1806335151195526,0.18703030049800873,0.19082647562026978,0.20338065922260284,0.1847478300333023,0.18321853876113892,0.19813565909862518,0.1895175576210022,0.1793188899755478,0.19200138747692108,0.18723879754543304,0.1929505169391632,0.17985771596431732,0.19629643857479095,0.19319449365139008,0.17480921745300293,0.17807221412658691,0.17799238860607147,0.19290687143802643,0.1772059202194214,0.18722796440124512,0.2007342278957367,0.19178959727287292,0.18908186256885529,0.177564799785614,0.1976952850818634,0.1890854835510254,0.19970208406448364,0.19611480832099915,0.19938883185386658,0.20417875051498413,0.1665889471769333,0.15116436779499054,0.14157095551490784,0.15790121257305145,0.17587260901927948,0.16104891896247864,0.1560152769088745,0.16932636499404907,0.17377078533172607,0.16393813490867615,0.161336287856102,0.1722847819328308,0.19361098110675812,0.1780015379190445,0.17549659311771393,0.19009704887866974,0.17741842567920685,0.16661067306995392,0.1667676568031311,0.16893300414085388,0.1626550853252411,0.1587422490119934,0.1431097686290741,0.16248103976249695,0.17312538623809814,0.16420713067054749,0.16375704109668732,0.16865594685077667,0.17211563885211945,0.1637631207704544,0.1601448357105255,0.16518819332122803,0.1887056976556778,0.17895495891571045,0.17963701486587524,0.18492229282855988,0.1748945116996765,0.16624948382377625,0.16775394976139069,0.17401325702667236,0.18403840065002441,0.17022912204265594,0.1713118851184845,0.1776442676782608,0.17692989110946655,0.1679532378911972,0.16109207272529602,0.17364297807216644,0.1946430653333664,0.19772303104400635,0.18386857211589813,0.19374987483024597,0.17858369648456573,0.17459842562675476,0.19119052588939667,0.18222492933273315,0.17377100884914398,0.17494648694992065,0.1883658468723297,0.17887064814567566,0.17028285562992096,0.1669226735830307,0.18622827529907227,0.17455483973026276,0.18446020781993866,0.17870308458805084,0.17698024213314056,0.17828761041164398,0.2130901962518692,0.18744970858097076,0.17977868020534515,0.20528148114681244,0.20398619771003723,0.18637827038764954,0.19749559462070465,0.2011929154396057,0.20527340471744537,0.1764376312494278,0.1771889477968216,0.19357898831367493,0.21426047384738922,0.1961493045091629,0.19915859401226044,0.20733627676963806,0.18093575537204742,0.1776440143585205,0.1861475259065628,0.1836870312690735,0.17337295413017273,0.1689719259738922,0.1906544268131256,0.17572586238384247,0.18541431427001953,0.17330999672412872,0.18485572934150696,0.18088345229625702,0.20666785538196564,0.181852787733078,0.19053460657596588,0.1961178183555603,0.19581179320812225,0.17807075381278992,0.1809655725955963,0.19106535613536835,0.19513185322284698,0.17118072509765625,0.18087205290794373,0.18599016964435577,0.19132600724697113,0.174249529838562,0.18402491509914398,0.19238810241222382,0.201263889670372,0.1766202300786972,0.18171532452106476,0.19495217502117157,0.20312735438346863,0.17597270011901855,0.17210903763771057,0.20374572277069092,0.2035936713218689,0.17243151366710663,0.16329756379127502,0.20224662125110626,0.1927383840084076,0.16319431364536285,0.15805263817310333,0.188937708735466],"type":"violin","xaxis":"x4","yaxis":"y4"}], {"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"]]}],"heatmapgl":[{"type":"heatmapgl","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":""}}}],"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"}}},"xaxis":{"anchor":"y","domain":[0.0,0.255],"title":{"text":"text"}},"yaxis":{"anchor":"x","domain":[0.0,1.0]},"xaxis2":{"anchor":"y2","domain":[0.305,0.475]},"yaxis2":{"anchor":"x2","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis3":{"anchor":"y3","domain":[0.525,0.78],"title":{"text":"text"}},"yaxis3":{"anchor":"x3","domain":[0.0,1.0],"matches":"y","showticklabels":false},"xaxis4":{"anchor":"y4","domain":[0.8300000000000001,1.0]},"yaxis4":{"anchor":"x4","domain":[0.0,1.0],"matches":"y","showticklabels":false},"annotations":[{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.1275,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=False","x":0.39,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.6525000000000001,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"y_true=True","x":0.915,"xanchor":"center","xref":"paper","y":1.0,"yanchor":"bottom","yref":"paper"},{"font":{"size":16},"showarrow":false,"text":"similarity","textangle":-90,"x":0,"xanchor":"right","xref":"paper","xshift":-40,"y":0.5,"yanchor":"middle","yref":"paper"}],"height":900,"violingap":0,"violinmode":"overlay"}, {"responsive": true} ).then(function(){
var gd = document.getElementById('f38646a8-70b8-44f4-86c0-8081711656a1');
var x = new MutationObserver(function (mutations, observer) {{
var display = window.getComputedStyle(gd).display;
if (!display || display === 'none') {{
console.log([gd, 'removed!']);
Plotly.purge(gd);
observer.disconnect();
}}
}});
// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
x.observe(notebookContainer, {childList: true});
}}
// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
x.observe(outputEl, {childList: true});
}}
}) }; }); ","π"].join(""),l&&(e.text=P+e.text)}}}}(t,o,r,u,v):function(t,e,r,n,i){"never"===i?i="":"all"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i="hide"),e.text=xt(e.x,t,i,n)}(t,o,0,u,v),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),t.labelalias&&t.labelalias.hasOwnProperty(o.text)){var g=t.labelalias[o.text];"string"==typeof g&&(o.text=g)}if("boundaries"===t.tickson||t.showdividers){var y=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[y(o.x-.5),y(o.x+t.dtick-.5)]}return o},q.hoverLabelText=function(t,e,r){r&&(t=s.extendFlat({},t,{hoverformat:r}));var n=Array.isArray(e)?e[0]:e,i=Array.isArray(e)?e[1]:void 0;if(void 0!==i&&i!==n)return q.hoverLabelText(t,n,r)+" - "+q.hoverLabelText(t,i,r);var a="log"===t.type&&n<=0,o=q.tickText(t,t.c2l(a?-n:n),"hover").text;return a?0===n?"0":P+o:o};var gt=["f","p","n","μ","m","","k","M","G","T"];function yt(t){return"SI"===t||"B"===t}function mt(t){return t>14||t<-15}function xt(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||"B",u=e._tickexponent,c=q.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:"none"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:"none"===e.showexponent?e.range.map(e.r2d):[0,t||1]};dt(h),o=(Number(h._tickround)||0)+4,u=h._tickexponent,e.hoverformat&&(c=e.hoverformat)}if(c)return e._numFormat(c)(t).replace(/-/g,P);var p,d=Math.pow(10,-o)/2;if("none"===l&&(u=0),(t=Math.abs(t))
")):x=h.textLabel;var E={x:h.traceCoordinate[0],y:h.traceCoordinate[1],z:h.traceCoordinate[2],data:_._input,fullData:_,curveNumber:_.index,pointNumber:w};d.appendArrayPointValue(E,_,w),t._module.eventData&&(E=_._module.eventData(E,h,_,{},w));var L={points:[E]};if(e.fullSceneLayout.hovermode){var C=[];d.loneHover({trace:_,x:(.5+.5*m[0]/m[3])*s,y:(.5-.5*m[1]/m[3])*l,xLabel:T.xLabel,yLabel:T.yLabel,zLabel:T.zLabel,text:x,name:c.name,color:d.castHoverOption(_,w,"bgcolor")||c.color,borderColor:d.castHoverOption(_,w,"bordercolor"),fontFamily:d.castHoverOption(_,w,"font.family"),fontSize:d.castHoverOption(_,w,"font.size"),fontColor:d.castHoverOption(_,w,"font.color"),nameLength:d.castHoverOption(_,w,"namelength"),textAlign:d.castHoverOption(_,w,"align"),hovertemplate:f.castOption(_,w,"hovertemplate"),hovertemplateLabels:f.extendFlat({},E,T),eventData:[E]},{container:n,gd:r,inOut_bbox:C}),E.bbox=C[0]}h.buttons&&h.distance<5?r.emit("plotly_click",L):r.emit("plotly_hover",L),this.oldEventData=L}else d.loneUnhover(n),this.oldEventData&&r.emit("plotly_unhover",this.oldEventData),this.oldEventData=void 0;e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error("Catastrophic and unrecoverable WebGL error. Context lost.")};requestAnimationFrame(e)};var k=["xaxis","yaxis","zaxis"];function A(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],u=e[o+"calendar"],c=e["_"+o+"length"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(c||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;d
contributors',a=['© Carto5.mov","SZTRA103b09_00_00_09.mov","SZTEA201b_00_35_31.mov","SZTEA103a_00_16_19.mov","SZTRA103b16_00_00_06.mov","SZTRA103b17_00_00_12.mov","SZTRA101a28_00_00_58.mov","SZTRA201a30_00_00_54.mov","SZTEA201b_00_32_27.mov","SZTEA201a_00_21_32.mov","SZTEA101a_00_05_37.mov","SZTRA201a24_00_01_20.mov","SZTRA103a10_00_00_03.mov","SZTRA201a16_00_00_15.mov","SZTRA103b01_00_06_13.mov","SZTEA204a_00_52_12.mov","SZTEA103a_00_26_10.mov","SZTEA105a_00_21_25.mov","SZTRA204a01_00_05_06.mov","SZTEA202b_00_08_07.mov","SZTRA103b03_00_00_11.mov","SZTEA104a_00_30_59.mov","SZTRA102b08_00_00_07.mov","SZTRA202a08_00_00_17.mov","SZTRA204a08_00_00_19.mov","SZTEA105a_00_26_32.mov","SZTEA102b_00_25_33.mov","SZTEA201b_00_29_06.mov","SZTEA101a_00_08_58.mov","SZTRA202a01_00_05_36.mov","SZTEA203a_00_11_18.mov","SZTRA103b11_00_00_22.mov","SZTEA104a_00_47_00.mov","SZTEA202b_00_28_32.mov","SZTRA201a17_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA202a03_00_00_09.mov","SZTRA201a29_00_01_13.mov","SZTRA103a06_00_00_04.mov","SZTEA204a_01_13_00.mov","SZTEA201a_00_35_52.mov","SZTEA202b_00_22_54.mov","SZTRA201a07_00_00_24.mov","SZTEA104a_00_41_08.mov","SZTEA105a_00_29_03.mov","SZTEA105a_00_18_56.mov","SZTRA201a09_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA201a13_00_00_26.mov","SZTRA204a03_00_00_03.mov","SZTEA204a_00_37_57.mov","SZTEA101a_00_12_12.mov","SZTEA202b_00_43_09.mov","SZTRA202b01_00_04_59.mov","SZTEA204a_01_21_56.mov","SZTEA204a_00_21_29.mov","SZTEA202b_00_30_49.mov","SZTEA104a_00_15_58.mov","SZTEA204a_01_31_46.mov","SZTRA202b03_00_00_15.mov","SZTEA201a_00_05_35.mov","SZTEA104a_01_24_54.mov","SZTRA104b06_00_00_10.mov","SZTEA203a_00_44_22.mov","SZTRA204a02_00_00_17.mov","SZTRA202b08_00_00_03.mov","SZTRA202a05_00_00_21.mov","SZTEA202b_00_33_01.mov","SZTRA104a13_00_00_28.mov","SZTRA201a02_00_01_38.mov","SZTEA104a_00_57_37.mov","SZTEA104a_00_49_38.mov","SZTRA204a04_00_00_07.mov","SZTRA203a14_00_00_06.mov","SZTRA201a10_00_00_15.mov","SZTEA202b_00_35_30.mov","SZTEA204a_01_16_10.mov","SZTEA102b_00_20_09.mov","SZTRA102b06_00_00_02.mov","SZTRA201a31_00_01_17.mov","SZTRA101a02_00_01_38.mov","SZTEA204a_00_30_54.mov","SZTEA101b_00_41_47.mov","SZTRA202b02_00_00_19.mov","SZTRA204a15_00_00_24.mov","SZTRA101a06_00_00_03.mov","SZTEA103a_00_06_17.mov","SZTEA203a_00_21_25.mov","SZTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
',i].join(" "),o=['Map tiles by Stamen Design16_00_00_06.mov","SZTRA103b17_00_00_12.mov","SZTRA101a28_00_00_58.mov","SZTRA201a30_00_00_54.mov","SZTEA201b_00_32_27.mov","SZTEA201a_00_21_32.mov","SZTEA101a_00_05_37.mov","SZTRA201a24_00_01_20.mov","SZTRA103a10_00_00_03.mov","SZTRA201a16_00_00_15.mov","SZTRA103b01_00_06_13.mov","SZTEA204a_00_52_12.mov","SZTEA103a_00_26_10.mov","SZTEA105a_00_21_25.mov","SZTRA204a01_00_05_06.mov","SZTEA202b_00_08_07.mov","SZTRA103b03_00_00_11.mov","SZTEA104a_00_30_59.mov","SZTRA102b08_00_00_07.mov","SZTRA202a08_00_00_17.mov","SZTRA204a08_00_00_19.mov","SZTEA105a_00_26_32.mov","SZTEA102b_00_25_33.mov","SZTEA201b_00_29_06.mov","SZTEA101a_00_08_58.mov","SZTRA202a01_00_05_36.mov","SZTEA203a_00_11_18.mov","SZTRA103b11_00_00_22.mov","SZTEA104a_00_47_00.mov","SZTEA202b_00_28_32.mov","SZTRA201a17_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA202a03_00_00_09.mov","SZTRA201a29_00_01_13.mov","SZTRA103a06_00_00_04.mov","SZTEA204a_01_13_00.mov","SZTEA201a_00_35_52.mov","SZTEA202b_00_22_54.mov","SZTRA201a07_00_00_24.mov","SZTEA104a_00_41_08.mov","SZTEA105a_00_29_03.mov","SZTEA105a_00_18_56.mov","SZTRA201a09_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA201a13_00_00_26.mov","SZTRA204a03_00_00_03.mov","SZTEA204a_00_37_57.mov","SZTEA101a_00_12_12.mov","SZTEA202b_00_43_09.mov","SZTRA202b01_00_04_59.mov","SZTEA204a_01_21_56.mov","SZTEA204a_00_21_29.mov","SZTEA202b_00_30_49.mov","SZTEA104a_00_15_58.mov","SZTEA204a_01_31_46.mov","SZTRA202b03_00_00_15.mov","SZTEA201a_00_05_35.mov","SZTEA104a_01_24_54.mov","SZTRA104b06_00_00_10.mov","SZTEA203a_00_44_22.mov","SZTRA204a02_00_00_17.mov","SZTRA202b08_00_00_03.mov","SZTRA202a05_00_00_21.mov","SZTEA202b_00_33_01.mov","SZTRA104a13_00_00_28.mov","SZTRA201a02_00_01_38.mov","SZTEA104a_00_57_37.mov","SZTEA104a_00_49_38.mov","SZTRA204a04_00_00_07.mov","SZTRA203a14_00_00_06.mov","SZTRA201a10_00_00_15.mov","SZTEA202b_00_35_30.mov","SZTEA204a_01_16_10.mov","SZTEA102b_00_20_09.mov","SZTRA102b06_00_00_02.mov","SZTRA201a31_00_01_17.mov","SZTRA101a02_00_01_38.mov","SZTEA204a_00_30_54.mov","SZTEA101b_00_41_47.mov","SZTRA202b02_00_00_19.mov","SZTRA204a15_00_00_24.mov","SZTRA101a06_00_00_03.mov","SZTEA103a_00_06_17.mov","SZTEA203a_00_21_25.mov","SZTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
','under CC BY 3.0.mov","SZTEA201b_00_32_27.mov","SZTEA201a_00_21_32.mov","SZTEA101a_00_05_37.mov","SZTRA201a24_00_01_20.mov","SZTRA103a10_00_00_03.mov","SZTRA201a16_00_00_15.mov","SZTRA103b01_00_06_13.mov","SZTEA204a_00_52_12.mov","SZTEA103a_00_26_10.mov","SZTEA105a_00_21_25.mov","SZTRA204a01_00_05_06.mov","SZTEA202b_00_08_07.mov","SZTRA103b03_00_00_11.mov","SZTEA104a_00_30_59.mov","SZTRA102b08_00_00_07.mov","SZTRA202a08_00_00_17.mov","SZTRA204a08_00_00_19.mov","SZTEA105a_00_26_32.mov","SZTEA102b_00_25_33.mov","SZTEA201b_00_29_06.mov","SZTEA101a_00_08_58.mov","SZTRA202a01_00_05_36.mov","SZTEA203a_00_11_18.mov","SZTRA103b11_00_00_22.mov","SZTEA104a_00_47_00.mov","SZTEA202b_00_28_32.mov","SZTRA201a17_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA202a03_00_00_09.mov","SZTRA201a29_00_01_13.mov","SZTRA103a06_00_00_04.mov","SZTEA204a_01_13_00.mov","SZTEA201a_00_35_52.mov","SZTEA202b_00_22_54.mov","SZTRA201a07_00_00_24.mov","SZTEA104a_00_41_08.mov","SZTEA105a_00_29_03.mov","SZTEA105a_00_18_56.mov","SZTRA201a09_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA201a13_00_00_26.mov","SZTRA204a03_00_00_03.mov","SZTEA204a_00_37_57.mov","SZTEA101a_00_12_12.mov","SZTEA202b_00_43_09.mov","SZTRA202b01_00_04_59.mov","SZTEA204a_01_21_56.mov","SZTEA204a_00_21_29.mov","SZTEA202b_00_30_49.mov","SZTEA104a_00_15_58.mov","SZTEA204a_01_31_46.mov","SZTRA202b03_00_00_15.mov","SZTEA201a_00_05_35.mov","SZTEA104a_01_24_54.mov","SZTRA104b06_00_00_10.mov","SZTEA203a_00_44_22.mov","SZTRA204a02_00_00_17.mov","SZTRA202b08_00_00_03.mov","SZTRA202a05_00_00_21.mov","SZTEA202b_00_33_01.mov","SZTRA104a13_00_00_28.mov","SZTRA201a02_00_01_38.mov","SZTEA104a_00_57_37.mov","SZTEA104a_00_49_38.mov","SZTRA204a04_00_00_07.mov","SZTRA203a14_00_00_06.mov","SZTRA201a10_00_00_15.mov","SZTEA202b_00_35_30.mov","SZTEA204a_01_16_10.mov","SZTEA102b_00_20_09.mov","SZTRA102b06_00_00_02.mov","SZTRA201a31_00_01_17.mov","SZTRA101a02_00_01_38.mov","SZTEA204a_00_30_54.mov","SZTEA101b_00_41_47.mov","SZTRA202b02_00_00_19.mov","SZTRA204a15_00_00_24.mov","SZTRA101a06_00_00_03.mov","SZTEA103a_00_06_17.mov","SZTEA203a_00_21_25.mov","SZTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
',"|",'Data by OpenStreetMapTRA201a24_00_01_20.mov","SZTRA103a10_00_00_03.mov","SZTRA201a16_00_00_15.mov","SZTRA103b01_00_06_13.mov","SZTEA204a_00_52_12.mov","SZTEA103a_00_26_10.mov","SZTEA105a_00_21_25.mov","SZTRA204a01_00_05_06.mov","SZTEA202b_00_08_07.mov","SZTRA103b03_00_00_11.mov","SZTEA104a_00_30_59.mov","SZTRA102b08_00_00_07.mov","SZTRA202a08_00_00_17.mov","SZTRA204a08_00_00_19.mov","SZTEA105a_00_26_32.mov","SZTEA102b_00_25_33.mov","SZTEA201b_00_29_06.mov","SZTEA101a_00_08_58.mov","SZTRA202a01_00_05_36.mov","SZTEA203a_00_11_18.mov","SZTRA103b11_00_00_22.mov","SZTEA104a_00_47_00.mov","SZTEA202b_00_28_32.mov","SZTRA201a17_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA202a03_00_00_09.mov","SZTRA201a29_00_01_13.mov","SZTRA103a06_00_00_04.mov","SZTEA204a_01_13_00.mov","SZTEA201a_00_35_52.mov","SZTEA202b_00_22_54.mov","SZTRA201a07_00_00_24.mov","SZTEA104a_00_41_08.mov","SZTEA105a_00_29_03.mov","SZTEA105a_00_18_56.mov","SZTRA201a09_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA201a13_00_00_26.mov","SZTRA204a03_00_00_03.mov","SZTEA204a_00_37_57.mov","SZTEA101a_00_12_12.mov","SZTEA202b_00_43_09.mov","SZTRA202b01_00_04_59.mov","SZTEA204a_01_21_56.mov","SZTEA204a_00_21_29.mov","SZTEA202b_00_30_49.mov","SZTEA104a_00_15_58.mov","SZTEA204a_01_31_46.mov","SZTRA202b03_00_00_15.mov","SZTEA201a_00_05_35.mov","SZTEA104a_01_24_54.mov","SZTRA104b06_00_00_10.mov","SZTEA203a_00_44_22.mov","SZTRA204a02_00_00_17.mov","SZTRA202b08_00_00_03.mov","SZTRA202a05_00_00_21.mov","SZTEA202b_00_33_01.mov","SZTRA104a13_00_00_28.mov","SZTRA201a02_00_01_38.mov","SZTEA104a_00_57_37.mov","SZTEA104a_00_49_38.mov","SZTRA204a04_00_00_07.mov","SZTRA203a14_00_00_06.mov","SZTRA201a10_00_00_15.mov","SZTEA202b_00_35_30.mov","SZTEA204a_01_16_10.mov","SZTEA102b_00_20_09.mov","SZTRA102b06_00_00_02.mov","SZTRA201a31_00_01_17.mov","SZTRA101a02_00_01_38.mov","SZTEA204a_00_30_54.mov","SZTEA101b_00_41_47.mov","SZTRA202b02_00_00_19.mov","SZTRA204a15_00_00_24.mov","SZTRA101a06_00_00_03.mov","SZTEA103a_00_06_17.mov","SZTEA203a_00_21_25.mov","SZTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
contributors','under ODbL_13.mov","SZTEA204a_00_52_12.mov","SZTEA103a_00_26_10.mov","SZTEA105a_00_21_25.mov","SZTRA204a01_00_05_06.mov","SZTEA202b_00_08_07.mov","SZTRA103b03_00_00_11.mov","SZTEA104a_00_30_59.mov","SZTRA102b08_00_00_07.mov","SZTRA202a08_00_00_17.mov","SZTRA204a08_00_00_19.mov","SZTEA105a_00_26_32.mov","SZTEA102b_00_25_33.mov","SZTEA201b_00_29_06.mov","SZTEA101a_00_08_58.mov","SZTRA202a01_00_05_36.mov","SZTEA203a_00_11_18.mov","SZTRA103b11_00_00_22.mov","SZTEA104a_00_47_00.mov","SZTEA202b_00_28_32.mov","SZTRA201a17_00_00_10.mov","SZTRA203b13_00_00_16.mov","SZTRA202a03_00_00_09.mov","SZTRA201a29_00_01_13.mov","SZTRA103a06_00_00_04.mov","SZTEA204a_01_13_00.mov","SZTEA201a_00_35_52.mov","SZTEA202b_00_22_54.mov","SZTRA201a07_00_00_24.mov","SZTEA104a_00_41_08.mov","SZTEA105a_00_29_03.mov","SZTEA105a_00_18_56.mov","SZTRA201a09_00_00_01.mov","SZTRA202b06_00_00_01.mov","SZTRA201a13_00_00_26.mov","SZTRA204a03_00_00_03.mov","SZTEA204a_00_37_57.mov","SZTEA101a_00_12_12.mov","SZTEA202b_00_43_09.mov","SZTRA202b01_00_04_59.mov","SZTEA204a_01_21_56.mov","SZTEA204a_00_21_29.mov","SZTEA202b_00_30_49.mov","SZTEA104a_00_15_58.mov","SZTEA204a_01_31_46.mov","SZTRA202b03_00_00_15.mov","SZTEA201a_00_05_35.mov","SZTEA104a_01_24_54.mov","SZTRA104b06_00_00_10.mov","SZTEA203a_00_44_22.mov","SZTRA204a02_00_00_17.mov","SZTRA202b08_00_00_03.mov","SZTRA202a05_00_00_21.mov","SZTEA202b_00_33_01.mov","SZTRA104a13_00_00_28.mov","SZTRA201a02_00_01_38.mov","SZTEA104a_00_57_37.mov","SZTEA104a_00_49_38.mov","SZTRA204a04_00_00_07.mov","SZTRA203a14_00_00_06.mov","SZTRA201a10_00_00_15.mov","SZTEA202b_00_35_30.mov","SZTEA204a_01_16_10.mov","SZTEA102b_00_20_09.mov","SZTRA102b06_00_00_02.mov","SZTRA201a31_00_01_17.mov","SZTRA101a02_00_01_38.mov","SZTEA204a_00_30_54.mov","SZTEA101b_00_41_47.mov","SZTRA202b02_00_00_19.mov","SZTRA204a15_00_00_24.mov","SZTRA101a06_00_00_03.mov","SZTEA103a_00_06_17.mov","SZTEA203a_00_21_25.mov","SZTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
'].join(" "),s={"open-street-map":{id:"osm",version:8,sources:{"plotly-osm-tiles":{type:"raster",attribution:i,tiles:["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png","https://b.tile.openstreetmap.org/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-osm-tiles",type:"raster",source:"plotly-osm-tiles",minzoom:0,maxzoom:22}]},"white-bg":{id:"white-bg",version:8,sources:{},layers:[{id:"white-bg",type:"background",paint:{"background-color":"#FFFFFF"},minzoom:0,maxzoom:22}]},"carto-positron":{id:"carto-positron",version:8,sources:{"plotly-carto-positron":{type:"raster",attribution:a,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-positron",type:"raster",source:"plotly-carto-positron",minzoom:0,maxzoom:22}]},"carto-darkmatter":{id:"carto-darkmatter",version:8,sources:{"plotly-carto-darkmatter":{type:"raster",attribution:a,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-darkmatter",type:"raster",source:"plotly-carto-darkmatter",minzoom:0,maxzoom:22}]},"stamen-terrain":{id:"stamen-terrain",version:8,sources:{"plotly-stamen-terrain":{type:"raster",attribution:o,tiles:["https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-terrain",type:"raster",source:"plotly-stamen-terrain",minzoom:0,maxzoom:22}]},"stamen-toner":{id:"stamen-toner",version:8,sources:{"plotly-stamen-toner":{type:"raster",attribution:o,tiles:["https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-toner",type:"raster",source:"plotly-stamen-toner",minzoom:0,maxzoom:22}]},"stamen-watercolor":{id:"stamen-watercolor",version:8,sources:{"plotly-stamen-watercolor":{type:"raster",attribution:['Map tiles by Stamen DesignTEA202b_00_38_08.mov","SZTRA101a03_00_01_25.mov","SZTRA101a05_00_00_07.mov","SZTRA201a11_00_00_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
','under CC BY 3.000_14.mov","SZTRA201a06_00_00_03.mov","SZTRA203a08_00_00_05.mov","SZTEA204a_01_19_21.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
',"|",'Data by OpenStreetMap.mov","SZTEA204a_00_41_01.mov","SZTEA103a_00_18_38.mov","SZTEA105a_00_10_37.mov","SZTRA203a01_00_05_19.mov","SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
contributors','under CC BY SA,"SZTEA203a_00_46_41.mov","SZTEA202b_00_17_52.mov","SZTRA101a10_00_00_15.mov","SZTEA201a_00_08_58.mov","SZTRA103a05_00_00_07.mov","SZTEA204a_00_46_53.mov","SZTRA101a04_00_00_18.mov","SZTEA104a_01_22_06.mov","SZTEA102b_00_15_22.mov","SZTEA102b_00_17_48.mov","SZTEA101b_00_24_02.mov","SZTEA203a_00_36_37.mov","SZTRA101a16_00_00_20.mov","SZTRA203a07_00_00_24.mov","SZTRA203b15_00_00_09.mov","SZTEA204a_00_15_54.mov","SZTRA101a26_00_01_18.mov","SZTEA204a_01_27_06.mov","SZTEA103a_00_21_23.mov","SZTEA105a_00_32_03.mov","SZTEA204a_01_03_22.mov","SZTRA104b10_00_01_22.mov","SZTEA203a_00_18_33.mov","SZTEA101b_00_29_16.mov","SZTEA105a_00_16_24.mov","SZTEA103a_00_23_55.mov","SZTRA202a02_00_01_50.mov","SZTEA103a_00_36_41.mov","SZTEA102a_00_31_58.mov","SZTRA104b02_00_01_10.mov","SZTEA202b_00_20_12.mov","SZTEA201a_00_31_29.mov","SZTRA102b04_00_00_22.mov","SZTEA204a_00_07_06.mov","SZTEA104a_00_09_51.mov","SZTEA101a_00_27_58.mov","SZTRA103b05_00_02_01.mov","SZTEA202b_00_25_38.mov","SZTRA101a13_00_00_25.mov","SZTEA104a_00_38_04.mov","SZTEA203a_00_23_52.mov","SZTRA203b10_00_00_17.mov","SZTEA104a_00_52_17.mov","SZTRA103b07_00_00_09.mov","SZTRA202b04_00_00_22.mov","SZTRA103b08_00_00_05.mov","SZTEA201a_00_18_41.mov","SZTRA203b14_00_00_18.mov","SZTRA102b07_00_00_49.mov","SZTRA101a18_00_00_12.mov","SZTEA104a_01_03_28.mov","SZTRA101a17_00_00_10.mov","SZTEA103a_00_39_36.mov","SZTEA102b_00_22_49.mov","SZTEA102b_00_40_37.mov","SZTEA203a_00_26_06.mov","SZTRA101a09_00_00_01.mov","SZTRA102a07_00_00_02.mov","SZTRA101a25_00_01_14.mov","SZTEA104a_00_28_38.mov","SZTRA102b09_00_00_06.mov","SZTEA202b_00_15_26.mov","SZTRA203a02_00_00_08.mov","SZTEA104a_01_19_26.mov","SZTRA102a05_00_00_20.mov","SZTRA201a01_00_08_50.mov","SZTRA203a04_00_00_03.mov","SZTRA101a30_00_00_54.mov","SZTEA104a_00_43_42.mov","SZTEA204a_00_12_54.mov","SZTEA204a_00_28_33.mov","SZTEA104a_00_21_34.mov","SZTEA102a_00_16_09.mov","SZTRA202b05_00_00_06.mov","SZTRA104a12_00_00_08.mov","SZTRA103b02_00_00_12.mov","SZTRA203a09_00_00_16.mov","SZTEA102a_00_23_50.mov","SZTRA202b09_00_00_06.mov","SZTRA104a15_00_00_25.mov","SZTRA101a29_00_01_13.mov","SZTRA101a01_00_08_50.mov","SZTEA203a_00_42_05.mov","SZTRA203b12_00_00_10.mov","SZTEA104a_00_25_05.mov","SZTRA101a21_00_00_06.mov","SZTRA203b05_00_02_01.mov","SZTRA101a12_00_00_21.mov","SZTRA102a01_00_05_36.mov","SZTEA104a_01_29_50.mov","SZTEA104a_00_54_49.mov","SZTEA104a_00_35_33.mov","SZTRA101a19_00_00_06.mov","SZTRA203b11_00_00_13.mov","SZTRA102b02_00_00_17.mov","SZTRA203a05_00_00_05.mov","SZTEA203a_00_28_48.mov","SZTEA102a_00_34_05.mov","SZTEA104a_00_18_52.mov","SZTRA103a14_00_00_02.mov","SZTEA204a_00_09_45.mov","SZTRA101a24_00_01_14.mov","SZTRA203b08_00_00_05.mov","SZTEA203a_00_34_03.mov","SZTRA203b09_00_00_08.mov","SZTRA102b11_00_00_12.mov","SZTEA104a_00_33_20.mov","SZTRA104a02_00_00_17.mov","SZTRA104a04_00_00_07.mov","SZTEA102a_00_13_50.mov","SZTEA105a_00_35_05.mov","SZTRA203b16_00_00_06.mov","SZTEA103a_00_11_21.mov","SZTEA101a_00_24_44.mov","SZTEA102b_00_32_57.mov","SZTRA103a12_00_00_07.mov","SZTRA101a14_00_00_09.mov","SZTEA101b_00_38_29.mov","SZTRA103a16_00_00_07.mov","SZTEA104a_01_00_46.mov","SZTRA103a07_00_00_11.mov","SZTEA102a_00_11_15.mov","SZTEA101a_00_21_32.mov","SZTRA101a15_00_00_15.mov","SZTEA202b_00_13_14.mov","SZTRA103b06_00_00_13.mov","SZTEA102a_00_26_22.mov","SZTEA104a_01_27_12.mov","SZTEA201b_00_48_48.mov","SZTEA101b_00_21_12.mov","SZTEA103a_00_13_38.mov","SZTRA201a03_00_01_17.mov","SZTEA203a_00_31_43.mov","SZTEA101b_00_35_29.mov","SZTRA102b05_00_00_06.mov","SZTEA101b_00_18_50.mov","SZTEA203a_00_06_14.mov","SZTEA202b_00_45_20.mov","SZTEA104a_01_09_31.mov","SZTEA101b_00_13_56.mov","SZTEA102a_00_36_18.mov","SZTRA102a09_00_00_09.mov","SZTEA103a_00_08_46.mov","SZTRA104a08_00_00_18.mov","SZTRA102b03_00_00_14.mov","SZTRA104b03_00_00_39.mov","SZTEA101a_00_35_51.mov","SZTEA101a_00_18_41.mov","SZTRA104a10_00_00_11.mov","SZTRA203b07_00_00_09.mov","SZTRA203b17_00_00_13.mov","SZTEA201a_00_15_15.mov","SZTRA203a16_00_00_06.mov","SZTRA202b11_00_00_08.mov","SZTEA204a_00_33_15.mov","SZTEA203a_00_08_42.mov","SZTRA101a11_00_00_16.mov","SZTEA103a_00_28_50.mov","SZTRA203b02_00_00_12.mov","SZTRA203b06_00_00_13.mov","SZTRA102a03_00_00_11.mov","SZTRA104a07_00_00_10.mov","SZTEA203a_00_16_15.mov","SZTEA103a_00_34_09.mov","SZTRA103a08_00_00_04.mov","SZTRA202b10_00_00_09.mov","SZTRA203b01_00_06_13.mov","SZTRA101a31_00_01_17.mov","SZTRA104a01_00_05_14.mov","SZTRA102b01_00_04_58.mov","SZTEA104a_01_06_12.mov","SZTRA203b03_00_00_26.mov","SZTEA102a_00_05_01.mov","SZTEA102b_00_13_10.mov","SZTRA203b04_00_00_15.mov","SZTRA104a11_00_00_06.mov","SZTRA103a17_00_00_09.mov","SZTRA104a05_00_00_09.mov","SZTEA102a_00_21_18.mov","SZTEA101b_00_48_48.mov","SZTRA103a13_00_00_05.mov","SZTEA104a_00_12_51.mov","SZTEA102b_00_37_59.mov","SZTEA102b_00_43_05.mov","SZTRA103a15_00_00_06.mov","SZTEA104a_01_13_07.mov","SZTRA103a09_00_00_15.mov","SZTRA102b10_00_00_09.mov","SZTRA101a20_00_00_03.mov","SZTEA105a_00_13_40.mov","SZTRA104a03_00_00_04.mov","SZTRA104a06_00_00_46.mov","SZTEA203a_00_13_34.mov","SZTEA102b_00_07_50.mov","SZTRA102a02_00_01_50.mov","SZTEA104a_01_16_14.mov","SZTEA103a_00_31_50.mov","SZTEA101a_00_31_14.mov","SZTEA102a_00_18_56.mov","SZTRA203a03_00_00_12.mov","SZTEA101a_00_15_14.mov","SZTEA101b_00_10_40.mov","SZTEA101b_00_07_45.mov","SZTEA103a_00_42_09.mov","SZTEA103a_00_44_25.mov","SZTRA202b13_00_00_19.mov","SZTRA102b13_00_00_20.mov","SZTEA102b_00_10_36.mov","SZTRA104b01_00_09_03.mov","SZTRA202b12_00_00_12.mov","SZTRA103a02_00_00_07.mov","SZTEA102a_00_08_01.mov","SZTRA104b04_00_00_47.mov","SZTEA102b_00_05_08.mov","SZTRA104b05_00_00_36.mov","SZTEA102b_00_30_44.mov","SZTRA104a09_00_00_29.mov","SZTEA104a_00_07_11.mov","SZTRA102b12_00_00_11.mov","SZTRA203a17_00_00_10.mov","SZTRA102a08_00_00_17.mov","SZTRA103a01_00_05_19.mov","SZTEA102b_00_35_28.mov","SZTEA102b_00_28_27.mov","SZTRA103a04_00_00_03.mov","SZTRA102a10_00_00_12.mov","SZTRA103a03_00_00_12.mov","SZTEA103a_00_46_44.mov","SZTEA102b_00_45_14.mov","SZTRA103a11_00_00_14.mov","SZTEA104a_01_31_51.mov","SZTEA101b_00_16_17.mov"],"xaxis":"x","y":[0.9221550412123298,0.9278376163350784,0.9651520707556424,0.9677971496500718,0.9683643020306593,0.980736954040824,0.9816756779247062,0.982783948047756,0.9837769649855995,0.9854855782928966,0.987697464959183,0.9897660381875243,0.9901174874453634,0.9906852507749179,0.992267740745597,0.9961722719331951,0.9975738100926784,0.9991468093600748,0.999197632992743,1.0002455870403615,1.0015145474293774,1.0040178529334138,1.0056920709654016,1.007814184076401,1.0085162527683524,1.0092985701764747,1.009661405109368,1.0109780160792794,1.0114027262241678,1.013706382158904,1.0144889607093615,1.0146478608821052,1.014789385726047,1.017673051622807,1.0179091237623858,1.0189032095136399,1.019400326714369,1.0204977015428598,1.021294397655451,1.0214210846750187,1.0214431647158977,1.0225095841149385,1.022626576410952,1.0229301272874585,1.0232554611164597,1.024118485953196,1.0241294688169522,1.0258033035925707,1.0260335038771962,1.0264245883828744,1.0269849198195766,1.0311690147315578,1.0320029656324605,1.0325810285371377,1.0351347588044628,1.0352549421115353,1.0354715403433428,1.0357562314378792,1.0358488445725151,1.0362471942983715,1.038795483210822,1.0406332435583956,1.041054652292468,1.0425946233363539,1.04309681613887,1.043260775877159,1.0436976707435877,1.0446726039207441,1.0447177349132348,1.045752020977848,1.0462129828998625,1.0469579197702537,1.0471263125065335,1.0477732763223928,1.0500305830300356,1.0503529403861087,1.0505350107056273,1.0506944515759071,1.0512124141878083,1.0513804760613674,1.0532498031664987,1.0539306426364814,1.0546271134163054,1.0550827890606247,1.0561164561277208,1.0581674928116036,1.0587469269241871,1.0591179747064308,1.0596385587028831,1.0598100936821124,1.0605030689954105,1.061565244663451,1.061743993459325,1.0618808979654222,1.062498276212566,1.0627290579636999,1.062733659568522,1.0628351739443713,1.0638236553361002,1.0659511674759514,1.0663286668415346,1.0663549587907495,1.066409414494654,1.0666780650031726,1.06716913208035,1.0681570597491874,1.0689487043506438,1.0689914067683821,1.0695103118236475,1.070348305884071,1.0713198207793597,1.0715122727643016,1.0715866226317645,1.0717000890662025,1.0722327492751795,1.0727930690974914,1.0728189075840513,1.0732222637709214,1.0737119722435178,1.0738733928696789,1.073918332919686,1.0744730805198555,1.074519824440212,1.0745729854302095,1.0753079657062965,1.0753560183821627,1.0754184092648031,1.0755043873059154,1.0759979878014438,1.0768941709719637,1.0782527621361728,1.0783867748331812,1.0786343219345427,1.0798332898858434,1.080215387830813,1.0815011585891308,1.0820701643282096,1.082240479069535,1.083016959424545,1.083475089719126,1.0835578174527822,1.0838889107420329,1.085373395109363,1.0854844173889222,1.085603897662307,1.0858548108620902,1.0861066718884387,1.0862964971921325,1.0864518997267858,1.086693035822232,1.087411885344326,1.0879243396491756,1.0882674564303567,1.0909570826383994,1.091134646473454,1.0915232546622822,1.0923751596368263,1.0924548848406976,1.0924614325071758,1.0927642914836484,1.093402210636848,1.09350356827133,1.0970355571159178,1.097286858146351,1.097992141673704,1.0982876796571395,1.0984614886866382,1.0990762318728307,1.10009767034237,1.1002393608424146,1.101500409259314,1.1016601140160593,1.1021675944601712,1.1022953800646504,1.1030172929147317,1.1036210552129861,1.1047095568488459,1.1050004176561192,1.105808223176542,1.1062020064976887,1.1062046476126837,1.1063040111677884,1.106445268211612,1.1069809598086093,1.1088430124077886,1.1097870899019595,1.1098966988447518,1.1099794167577837,1.109998709921369,1.1102795000317933,1.1117166294019754,1.1126292196264562,1.1128053771402164,1.1128809441612677,1.112988772715107,1.1132245597515324,1.1137309665433468,1.1138939727789328,1.1139045447472222,1.113939659110069,1.1140541899864815,1.1141535974289756,1.1144893876932547,1.114584942401345,1.1146237036488793,1.114912321850477,1.1156215542474475,1.1158422299121362,1.1187453301503307,1.1187831121776588,1.118971517802482,1.119265902184346,1.1195230542047983,1.1196092631917507,1.1197860674916926,1.119915131214063,1.1201302547541028,1.1206224452421032,1.121095983013861,1.1213285953185905,1.1214539898025824,1.1224807711432545,1.1227304067929784,1.1228099289629958,1.1231092592729732,1.1237250657343711,1.1239786602494044,1.1241527321035882,1.1242181049707896,1.1249113413935294,1.1253156765521495,1.1258425652416186,1.1264593627664232,1.126827254215069,1.1275695670820538,1.1281878842666115,1.1294774993888066,1.1299140784941841,1.1301871024059345,1.131005688465237,1.1313120759322404,1.1321741739188242,1.1323190061662831,1.1324630641786766,1.133331186952397,1.1338830943914173,1.1342350267384702,1.1343926085856628,1.1346361583030542,1.1347137588318543,1.1349925248907273,1.1352400826720268,1.136071221979853,1.13687011487039,1.1375501231809708,1.1391328858480996,1.1394146241930314,1.1399779076674683,1.1407299862001732,1.1407915312789747,1.1419287751540996,1.141942450144949,1.1423263532885515,1.14243562273901,1.1435771230789633,1.143769873044803,1.1439242143459687,1.1449078514000406,1.145173469979911,1.1453316597649499,1.1456276900544995,1.1462264415899928,1.1490563958651214,1.1495478691481924,1.1496172034615253,1.1506928120605637,1.1508214305787405,1.1525436062982795,1.1533970742720001,1.1535593490350942,1.1544053726251369,1.1545672811430452,1.155065383196259,1.1554259183617297,1.1558999213458074,1.1559415999066402,1.1559777413951855,1.156190704010384,1.1562894372040118,1.1568874614064393,1.1589344355883198,1.1591956319724472,1.1602809915935586,1.162377337803709,1.1629556926263545,1.1630632618135714,1.1631650500734056,1.1632168089942299,1.1639593138916646,1.164865983004352,1.1660011776198833,1.1665236490019557,1.1665624735581972,1.1679354454006778,1.168439214033155,1.1684561056739602,1.1687188515075675,1.1687246269642173,1.1689854277997724,1.1691988768057955,1.1692064243809486,1.1694491934737803,1.1698832498012695,1.1701501888522592,1.1702863612020102,1.1709760982564505,1.171893800245807,1.1722087627874054,1.1727320034684043,1.173434575421074,1.1737927500165328,1.173903457874755,1.174912723100547,1.1751324664139815,1.1752634166601417,1.1756921786789192,1.176613419670606,1.1786556394714618,1.1790435582113339,1.1798558819762472,1.1811127291351444,1.181260347803885,1.1813386294706736,1.1817935773245813,1.1834984994411193,1.1836130946082504,1.1842404684332173,1.1845641480522668,1.1850062394294452,1.1855743916858223,1.186824410691276,1.1877580092785291,1.1878849202126132,1.188833884227244,1.1899164262982806,1.1899764714517709,1.1901866275349282,1.1910487425240601,1.1914381795174827,1.1914427024112608,1.1920972566216983,1.192549513525299,1.1929567886581467,1.1933102816222734,1.193433763136117,1.19400308619171,1.195003609736501,1.1954375097163221,1.195488898265558,1.1956289098566197,1.1961216274766142,1.196579413763926,1.198348322458277,1.198588078977296,1.2003480883117448,1.200456997176423,1.2014091140725762,1.2026324375333801,1.2028224850349798,1.202962465282801,1.203608964046726,1.203818872689859,1.2038637159024357,1.204963742930936,1.205136931434202,1.2070108466573277,1.207646887580207,1.2087595476146729,1.209102589437374,1.209706351123691,1.2105656244472163,1.210959811726101,1.2113980767620227,1.2119725543903288,1.212490774883037,1.2136482013301997,1.2138419478785594,1.2139930797622296,1.214264194432299,1.2145737470039446,1.2146416209303512,1.2156072211779876,1.2159932983471968,1.2164744496283124,1.2189562270890228,1.219756034456809,1.2213864618251986,1.2225101040286168,1.2237772254307269,1.2281307986159038,1.2305897312306113,1.2320777603844049,1.2322034042984613,1.23223013805817,1.2330633027467677,1.2342144550031884,1.2358379104396,1.23627397347664,1.2369102447589602,1.2370194379654835,1.2382699149772602,1.2396553998431574,1.2399409446798892,1.2445316922687908,1.2445472607989891,1.2474882404638514,1.2477860078145704,1.250168188568872,1.2520432118780767,1.2538886516870242,1.2546794489659556,1.2591304772167409,1.2604866196946642,1.263777827756312,1.2747386862012782,1.2747406972518103,1.2901524210824966,1.3038780778031749,1.3058204941090916,1.317244974299907,1.318901407211378,1.3219636511641668],"yaxis":"y","type":"scatter"},{"alignmentgroup":"True","hovertemplate":"y_true=True
'].join(" "),tiles:["https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-watercolor",type:"raster",source:"plotly-stamen-watercolor",minzoom:0,maxzoom:22}]}},l=n(s);t.exports={requiredVersion:"1.10.1",styleUrlPrefix:"mapbox://styles/mapbox/",styleUrlSuffix:"v9",styleValuesMapbox:["basic","streets","outdoors","light","dark","satellite","satellite-streets"],styleValueDflt:"basic",stylesNonMapbox:s,styleValuesNonMapbox:l,traceLayerPrefix:"plotly-trace-layer-",layoutLayerPrefix:"plotly-layout-layer-",wrongVersionErrorMsg:["Your custom plotly.js bundle is not using the correct mapbox-gl version","Please install mapbox-gl@1.10.1."].join("\n"),noAccessTokenErrorMsg:["Missing Mapbox access token.","Mapbox trace type require a Mapbox access token to be registered.","For example:"," Plotly.newPlot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });","More info here: https://www.mapbox.com/help/define-access-token/"].join("\n"),missingStyleErrorMsg:["No valid mapbox style found, please set `mapbox.style` to one of:",l.join(", "),"or register a Mapbox access token to use a Mapbox-served style."].join("\n"),multipleTokensErrorMsg:["Set multiple mapbox access token across different mapbox subplot,","using first token found as mapbox-gl does not allow multipleaccess tokens on the same page."].join("\n"),mapOnErrorMsg:"Mapbox error.",mapboxLogo:{path0:"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z",path1:"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z",path2:"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z",polygon:"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34"},styleRules:{map:"overflow:hidden;position:relative;","missing-css":"display:none;",canary:"background-color:salmon;","ctrl-bottom-left":"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;","ctrl-bottom-right":"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;",ctrl:"clear: both; pointer-events: auto; transform: translate(0, 0);","ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner":"display: none;","ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner":"display: block; margin-top:2px","ctrl-attrib.mapboxgl-compact:hover":"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;","ctrl-attrib.mapboxgl-compact::after":'content: ""; cursor: pointer; position: absolute; background-image: url(\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E %3Cpath fill="%23333333" fill-rule="evenodd" d="M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0"/%3E %3C/svg%3E\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',"ctrl-attrib.mapboxgl-compact":"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;","ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; right: 0","ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; left: 0","ctrl-bottom-left .mapboxgl-ctrl":"margin: 0 0 10px 10px; float: left;","ctrl-bottom-right .mapboxgl-ctrl":"margin: 0 10px 10px 0; float: right;","ctrl-attrib":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a:hover":"color: inherit; text-decoration: underline;","ctrl-attrib .mapbox-improve-map":"font-weight: bold; margin-left: 2px;","attrib-empty":"display: none;","ctrl-logo":'display:block; width: 21px; height: 21px; background-image: url(\'data:image/svg+xml;charset=utf-8,%3C?xml version="1.0" encoding="utf-8"?%3E %3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 21" style="enable-background:new 0 0 21 21;" xml:space="preserve"%3E%3Cg transform="translate(0,0.01)"%3E%3Cpath d="m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z" style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3Cpath d="M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpath d="M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpolygon points="11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 " style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3C/g%3E%3C/svg%3E\')'}}},13056:function(t,e,r){"use strict";var n=r(71828);t.exports=function(t,e){var r=t.split(" "),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,u=["",""],c=[0,0];switch(i){case"top":u[0]="top",c[1]=-l;break;case"bottom":u[0]="bottom",c[1]=l}switch(a){case"left":u[1]="right",c[0]=-s;break;case"right":u[1]="left",c[0]=s}return{anchor:u[0]&&u[1]?u.join("-"):u[0]?u[0]:u[1]?u[1]:"center",offset:c}}},50101:function(t,e,r){"use strict";var n=r(44517),i=r(71828),a=i.strTranslate,o=i.strScale,s=r(27659).AU,l=r(77922),u=r(39898),c=r(91424),f=r(63893),h=r(10481),p="mapbox",d=e.constants=r(77734);function v(t){return"string"==typeof t&&(-1!==d.styleValuesMapbox.indexOf(t)||0===t.indexOf("mapbox://"))}e.name=p,e.attr="subplot",e.idRoot=p,e.idRegex=e.attrRegex=i.counterRegex(p),e.attributes={subplot:{valType:"subplotid",dflt:"mapbox",editType:"calc"}},e.layoutAttributes=r(23585),e.supplyLayoutDefaults=r(77882),e.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==d.requiredVersion)throw new Error(d.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(""===t._context.mapboxAccessToken)return"";for(var n=[],a=[],o=!1,s=!1,l=0;l
");x.text(w).attr("data-unformatted",w).call(f.convertToTspans,t),b=c.bBox(x.node())}x.attr("transform",a(-3,8-b.height)),m.insert("rect",".static-attribution").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:"rgba(255, 255, 255, 0.75)"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];m.attr("transform",a(k[0],k[1])+o(T))}},e.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n
")}(e,r,n,i):v.getValue(s.text,r),v.coerceString(m,o)}(C,n,i,T,M);w=function(t,e){var r=v.getValue(t.textposition,e);return v.coerceEnumerated(x,r)}(O,i);var z="stack"===g.mode||"relative"===g.mode,R=n[i],F=!z||R._outmost;if(D&&"none"!==w&&(!R.isBlank&&s!==u&&f!==p||"auto"!==w&&"inside"!==w)){var B=C.font,N=d.getBarColor(n[i],O),j=d.getInsideTextFont(O,i,B,N),U=d.getOutsideTextFont(O,i,B),V=r.datum();I?"log"===T.type&&V.s0<=0&&(s=T.range[0]